2020-11-15 14:49:02 +00:00
|
|
|
FROM python:3.9-slim-buster as locker
|
2019-12-30 09:34:31 +00:00
|
|
|
|
|
|
|
COPY ./Pipfile /app/
|
|
|
|
COPY ./Pipfile.lock /app/
|
|
|
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
|
|
|
RUN pip install pipenv && \
|
|
|
|
pipenv lock -r > requirements.txt && \
|
|
|
|
pipenv lock -rd > requirements-dev.txt
|
|
|
|
|
2020-11-15 14:49:02 +00:00
|
|
|
FROM python:3.9-slim-buster as static-build
|
2019-12-30 09:34:31 +00:00
|
|
|
|
|
|
|
COPY --from=locker /app/requirements.txt /app/
|
|
|
|
COPY --from=locker /app/requirements-dev.txt /app/
|
|
|
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
|
|
|
RUN apt-get update && \
|
2020-11-15 15:17:25 +00:00
|
|
|
apt-get install -y --no-install-recommends postgresql-client-11 build-essential libxmlsec1-dev pkg-config && \
|
2019-12-30 09:34:31 +00:00
|
|
|
rm -rf /var/lib/apt/ && \
|
|
|
|
pip install -r requirements.txt --no-cache-dir && \
|
2020-09-02 22:04:12 +00:00
|
|
|
apt-get remove --purge -y build-essential && \
|
|
|
|
apt-get autoremove --purge && \
|
2019-12-30 09:34:31 +00:00
|
|
|
adduser --system --no-create-home --uid 1000 --group --home /app passbook
|
2019-07-22 13:18:33 +00:00
|
|
|
|
|
|
|
COPY ./passbook/ /app/passbook
|
|
|
|
COPY ./manage.py /app/
|
|
|
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
2019-12-30 09:34:31 +00:00
|
|
|
ENV PASSBOOK_POSTGRESQL__HOST=postgres
|
|
|
|
ENV PASSBOOK_REDIS__HOST=redis
|
2019-10-01 13:30:22 +00:00
|
|
|
ENV PASSBOOK_POSTGRESQL__USER=passbook
|
2019-12-30 09:34:31 +00:00
|
|
|
# CI Password, same as in .github/workflows/ci.yml
|
2019-10-01 13:30:22 +00:00
|
|
|
ENV PASSBOOK_POSTGRESQL__PASSWORD="EK-5jnKfjrGRm<77"
|
2019-07-22 13:18:33 +00:00
|
|
|
RUN ./manage.py collectstatic --no-input
|
|
|
|
|
2020-10-05 21:51:29 +00:00
|
|
|
FROM node as npm-builder
|
2019-07-22 13:18:33 +00:00
|
|
|
|
2020-10-05 21:51:29 +00:00
|
|
|
COPY --from=static-build /app/static/src /static/src
|
|
|
|
COPY --from=static-build /app/static/rollup.config.js /static/rollup.config.js
|
2020-11-21 20:57:49 +00:00
|
|
|
COPY --from=static-build /app/static/tsconfig.json /static/tsconfig.json
|
2020-02-21 14:33:54 +00:00
|
|
|
COPY --from=static-build /app/static/package.json /static/package.json
|
2020-10-05 20:37:53 +00:00
|
|
|
COPY --from=static-build /app/static/package-lock.json /static/package-lock.json
|
2020-02-21 14:33:54 +00:00
|
|
|
|
2020-10-04 11:01:55 +00:00
|
|
|
RUN cd /static && npm i && npm run build
|
2020-02-21 14:33:54 +00:00
|
|
|
|
|
|
|
FROM nginx
|
|
|
|
|
|
|
|
COPY --from=static-build /app/static /usr/share/nginx/html/static
|
|
|
|
COPY --from=static-build /app/static/robots.txt /usr/share/nginx/html/robots.txt
|
2020-10-05 21:51:29 +00:00
|
|
|
COPY --from=npm-builder /static/node_modules /usr/share/nginx/html/static/node_modules
|
2020-11-21 20:57:49 +00:00
|
|
|
COPY --from=npm-builder /static/dist/* /usr/share/nginx/html/static/dist/
|