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-12-30 09:34:31 +00:00
|
|
|
FROM python:3.7-slim-buster as locker
|
|
|
|
|
|
|
|
COPY ./Pipfile /app/
|
|
|
|
COPY ./Pipfile.lock /app/
|
|
|
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
|
|
|
RUN pip install pipenv && \
|
|
|
|
pipenv lock -r > requirements.txt && \
|
|
|
|
pipenv lock -rd > requirements-dev.txt
|
|
|
|
|
|
|
|
FROM python:3.7-slim-buster
|
|
|
|
|
|
|
|
COPY --from=locker /app/requirements.txt /app/
|
|
|
|
COPY --from=locker /app/requirements-dev.txt /app/
|
|
|
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y --no-install-recommends postgresql-client-11 && \
|
|
|
|
rm -rf /var/lib/apt/ && \
|
|
|
|
pip install -r requirements.txt --no-cache-dir && \
|
|
|
|
adduser --system --no-create-home --uid 1000 --group --home /app passbook
|
2019-02-11 17:01:29 +00:00
|
|
|
|
2019-10-10 15:13:06 +00:00
|
|
|
COPY ./passbook/ /app/passbook
|
2019-02-11 17:01:29 +00:00
|
|
|
COPY ./manage.py /app/
|
2019-10-04 10:45:19 +00:00
|
|
|
COPY ./docker/uwsgi.ini /app/
|
2019-02-08 13:57:16 +00:00
|
|
|
|
|
|
|
WORKDIR /app/
|
2019-10-07 19:23:38 +00:00
|
|
|
|
|
|
|
USER passbook
|