foodsoft/Dockerfile

26 lines
648 B
Docker
Raw Normal View History

FROM ruby:2.3
RUN apt-get update && \
apt-get install --no-install-recommends -y cron && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean
2017-02-11 12:44:49 +01:00
ENV RAILS_ENV=production
2017-02-11 12:44:49 +01:00
WORKDIR /usr/src/app
COPY . ./
RUN echo $SOURCE_COMMIT > REVISION
RUN buildDeps='libmagic-dev' && \
apt-get update && \
apt-get install --no-install-recommends -y $buildDeps && \
rm -rf /var/lib/apt/lists/* && \
bundle install --deployment --without development test && \
apt-get purge -y --auto-remove $buildDeps && \
2017-02-11 12:44:49 +01:00
whenever --update-crontab
EXPOSE 3000
2017-02-11 12:44:49 +01:00
ENTRYPOINT ["./docker-entrypoint.sh"]
CMD ["rails", "server", "--binding", "0.0.0.0"]