manuels-scolaires/Dockerfile

32 lines
677 B
Docker
Raw Normal View History

2018-05-25 14:46:27 +02:00
FROM python:3.6
RUN ln -fs /usr/share/zoneinfo/Europe/Paris /etc/localtime && \
dpkg-reconfigure -f noninteractive tzdata
WORKDIR /app
EXPOSE 8000
VOLUME /app/staticfiles
RUN pip3 install pipenv
COPY Pipfile Pipfile.lock ./
RUN pipenv install
COPY . ./
RUN chmod +x bash/run-prod.sh
CMD bash/run-prod.sh
2018-06-20 00:08:37 +02:00
HEALTHCHECK --interval=10s --timeout=10s CMD ["pipenv", "run", "python", "healthcheck.py"]
2018-06-19 23:52:48 +02:00
2018-06-02 18:11:51 +02:00
ENV DATABASE_URL postgres://postgresql:postgresql@db:5432/manuels
2018-05-25 14:46:27 +02:00
ENV SECRET_KEY ''
ENV MAILGUN_ACCESS_KEY ''
ENV MAILGUN_SERVER_NAME ''
ENV DJANGO_ENV ''
ENV ADMIN_EMAIL ''
ENV SERVER_EMAIL ''
2018-06-02 18:11:51 +02:00
ENV HOST ''
ENV REPLY_TO ''
ENV AUTHORIZED_EMAILS ''
ENV LIBRARIAN_EMAILS ''