Files
bbs-server/Dockerfile
2026-04-30 09:58:56 +02:00

18 lines
225 B
Docker

FROM ruby:3.3-alpine
RUN apk add --no-cache git build-base
WORKDIR /app
COPY Gemfile ./
RUN bundle update bbs
COPY bbs.rb ./
COPY lib/ ./lib/
RUN mkdir -p /app/data
EXPOSE 2323
CMD ["bundle", "exec", "ruby", "bbs.rb"]