stevefolder/Containerfile

15 lines
213 B
Plaintext
Raw Normal View History

2022-08-10 22:22:37 -04:00
FROM ruby:3.1.2
WORKDIR /srv/
RUN mkdir /srv/stevefolder
WORKDIR /srv/stevefolder
COPY Gemfile Gemfile
COPY Gemfile.lock Gemfile.lock
COPY . .
RUN mkdir spool
RUN bundle install
ENTRYPOINT ["ruby", "main.rb"]