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-10 15:13:06 +00:00
|
|
|
FROM python:3.7-slim-buster as locker
|
2019-07-22 13:18:33 +00:00
|
|
|
|
2019-09-10 15:00:13 +00:00
|
|
|
COPY ./Pipfile /app/
|
|
|
|
COPY ./Pipfile.lock /app/
|
2019-07-22 13:18:33 +00:00
|
|
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
2019-10-10 15:13:06 +00:00
|
|
|
RUN pip install pipenv && \
|
|
|
|
pipenv lock -r > requirements.txt && \
|
|
|
|
pipenv lock -rd > requirements-dev.txt
|
2019-10-04 09:50:52 +00:00
|
|
|
|
2019-10-10 15:13:06 +00:00
|
|
|
FROM python:3.7-slim-buster
|
|
|
|
|
|
|
|
COPY --from=locker /app/requirements.txt /app/
|
2019-10-11 12:33:30 +00:00
|
|
|
COPY --from=locker /app/requirements-dev.txt /app/
|
2019-10-10 15:13:06 +00:00
|
|
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
|
|
|
RUN pip install -r requirements.txt --no-cache-dir && \
|
2019-10-10 07:36:28 +00:00
|
|
|
adduser --system --no-create-home --uid 1000 --group --home /app passbook
|