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