22 lines
329 B
Docker
22 lines
329 B
Docker
|
FROM python:3.10-slim
|
||
|
|
||
|
ENV PYTHONDONTWRITEBYTECODE 1
|
||
|
|
||
|
ENV PYTHONUNBUFFERED 1
|
||
|
|
||
|
RUN pip install --upgrade pip
|
||
|
|
||
|
RUN pip install poetry
|
||
|
|
||
|
RUN poetry config virtualenvs.create false
|
||
|
|
||
|
RUN mkdir -p /usr/src/flask-demo-api/flask_demo_api
|
||
|
|
||
|
WORKDIR /usr/src/flask-demo-api
|
||
|
|
||
|
COPY ./poetry.lock .
|
||
|
|
||
|
COPY ./pyproject.toml .
|
||
|
|
||
|
RUN poetry install
|