Use Europe/Paris timezone and group ENV

This commit is contained in:
Gabriel Augendre 2018-04-02 12:56:50 +02:00
parent 0e199c48b0
commit e9cb109a74
No known key found for this signature in database
GPG key ID: F360212F958357D4

View file

@ -1,9 +1,11 @@
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
ENV DATABASE_URL postgres://postgresql:postgresql@db:5432/workout
RUN pip3 install pipenv
COPY Pipfile Pipfile.lock ./
@ -14,6 +16,7 @@ COPY . ./
RUN chmod +x bash/run-prod.sh
CMD bash/run-prod.sh
ENV DATABASE_URL postgres://postgresql:postgresql@db:5432/workout
ENV SECRET_KEY ''
ENV MAILGUN_ACCESS_KEY ''
ENV MAILGUN_SERVER_NAME ''