28 lines
421 B
Docker
28 lines
421 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/test_api
|
||
|
|
||
|
WORKDIR /usr/src/test_api
|
||
|
|
||
|
COPY ./poetry.lock .
|
||
|
|
||
|
COPY ./pyproject.toml .
|
||
|
|
||
|
RUN poetry install --only api --no-root
|
||
|
|
||
|
ENV CONFIG_PATH='/usr/src/test_api/config/api_config.yml'
|
||
|
|
||
|
ENV INDOCKER=1
|
||
|
|
||
|
RUN touch __init__.py
|