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-01 13:30:22 +00:00
|
|
|
FROM docker.beryju.org/passbook/dev 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-01 13:30:22 +00:00
|
|
|
COPY --from=static-build /app/static /static/_/static/
|
2019-07-22 13:18:33 +00:00
|
|
|
COPY ./passbook/core/nginx.conf /etc/nginx/nginx.conf
|