Files
bbs-server/Dockerfile
2026-04-30 10:37:18 +02:00

18 lines
265 B
Docker

FROM ruby:3.3-alpine
RUN apk add --no-cache git build-base
WORKDIR /app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY bbs.rb entrypoint.sh ./
COPY lib/ ./lib/
RUN mkdir -p /app/data && chmod +x entrypoint.sh
EXPOSE 2323
ENTRYPOINT ["./entrypoint.sh"]