mywillpower.org/Dockerfile

21 lines
316 B
Docker
Raw Normal View History

2022-02-13 02:01:37 -05:00
FROM ruby:3.1
# Move it
WORKDIR /opt
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
2022-02-17 20:51:02 -05:00
CMD ["bundle", "exec", "puma", "-p", "4567", "-e", "production"]