22 lines
397 B
Docker
22 lines
397 B
Docker
FROM python:3.6
|
|
|
|
WORKDIR /app
|
|
EXPOSE 8000
|
|
VOLUME /app/staticfiles
|
|
ENV DATABASE_URL postgres://postgresql:postgresql@db:5432/workout
|
|
|
|
RUN pip3 install pipenv
|
|
COPY Pipfile Pipfile.lock ./
|
|
RUN pipenv install
|
|
|
|
COPY . ./
|
|
|
|
RUN chmod +x bash/run-prod.sh
|
|
CMD bash/run-prod.sh
|
|
|
|
ENV SECRET_KEY ''
|
|
ENV MAILGUN_ACCESS_KEY ''
|
|
ENV MAILGUN_SERVER_NAME ''
|
|
ENV DJANGO_ENV ''
|
|
ENV ADMIN_EMAIL ''
|
|
ENV SERVER_EMAIL ''
|