mywillpower.org/Dockerfile

22 lines
341 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
CMD ["bundle", "exec", "rackup", "-o", "0.0.0.0", "-p", "4567", "-E", \
"production"]