mywillpower.org/Dockerfile
2024-08-02 20:14:26 -04:00

22 lines
335 B
Docker

FROM docker.io/ruby:3.1
# Move it
WORKDIR /opt
COPY config/ ./config/
COPY public/ ./public/
COPY views/ ./views/
COPY Gemfile .
COPY config.ru .
COPY mywillpower.rb .
# Dependencies
RUN apt-get update
RUN apt-get -y upgrade
RUN bundle install
# Environment
EXPOSE 4567
# Send it
CMD ["bundle", "exec", "puma", "-e", "production"]