You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
348 B
Plaintext

FROM mcansky/base_ruby:2c7652fa95a2ab9419bb85e81a7c801ca6fa65d2
# Set environment variables.
ENV HOME /var/app
ENV RACK_ENV production
# Define working directory.
WORKDIR /var/app
RUN git clone https://github.com/mcansky/sinatra_hello.git /var/app
RUN cd /var/app; bundle install
CMD ["/usr/local/bin/foreman","run", "sidekiq","-d","/var/app"]