11 lines
193 B
Docker
11 lines
193 B
Docker
FROM python:3.7-buster
|
|
|
|
RUN pip install poetry
|
|
|
|
WORKDIR /app
|
|
COPY poetry.lock pyproject.toml /app/
|
|
|
|
RUN poetry config virtualenvs.create false
|
|
RUN poetry install --no-interaction
|
|
|
|
COPY . /app/
|