mirror of
https://github.com/pinry/pinry.git
synced 2025-11-17 18:30:39 +01:00
9 lines
125 B
Docker
9 lines
125 B
Docker
FROM python:3.6
|
|
ENV PYTHONUNBUFFERED 1
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN pip install pipenv
|
|
RUN pipenv install --three --system
|