12 lines
183 B
Docker
12 lines
183 B
Docker
FROM python:3
|
|
|
|
WORKDIR /app
|
|
COPY Pipfile Pipfile.lock .
|
|
|
|
RUN pip install pipenv
|
|
RUN pipenv install --deploy --system
|
|
|
|
COPY . /src
|
|
|
|
CMD ["pipenv", "run", "python", "/app/src/main.py"]
|