This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-10-04 09:50:52 +00:00
|
|
|
FROM docker.beryju.org/passbook/dev:latest as static-build
|
2019-07-22 13:18:33 +00:00
|
|
|
|
|
|
|
COPY ./passbook/ /app/passbook
|
|
|
|
COPY ./manage.py /app/
|
|
|
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
2019-10-01 13:30:22 +00:00
|
|
|
ENV PASSBOOK_POSTGRESQL__USER=passbook
|
|
|
|
# CI Password, same as in .gitlab-ci.yml
|
|
|
|
ENV PASSBOOK_POSTGRESQL__PASSWORD="EK-5jnKfjrGRm<77"
|
2019-07-22 13:18:33 +00:00
|
|
|
RUN ./manage.py collectstatic --no-input
|
|
|
|
|
|
|
|
FROM nginx:latest
|
|
|
|
|
2019-10-04 10:01:38 +00:00
|
|
|
COPY --from=static-build /app/static /data/static/
|
|
|
|
COPY --from=static-build /app/static/robots.txt /data/robots.txt
|
2019-10-04 10:45:19 +00:00
|
|
|
COPY ./docker/nginx.conf /etc/nginx/nginx.conf
|