mywillpower.org/Dockerfile

22 lines
335 B
Docker
Raw Normal View History

2024-08-02 20:14:26 -04:00
FROM docker.io/ruby:3.1
2022-02-13 02:01:37 -05:00
# Move it
WORKDIR /opt
2022-02-20 03:15:04 -05:00
COPY config/ ./config/
2022-02-13 02:01:37 -05:00
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-20 03:15:04 -05:00
CMD ["bundle", "exec", "puma", "-e", "production"]