init
This commit is contained in:
25
docker/api/Dockerfile
Normal file
25
docker/api/Dockerfile
Normal file
@@ -0,0 +1,25 @@
|
||||
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/service_man
|
||||
|
||||
WORKDIR /usr/src/service_man
|
||||
|
||||
COPY ./poetry.lock .
|
||||
|
||||
COPY ./pyproject.toml .
|
||||
|
||||
RUN poetry install --only api --no-root
|
||||
|
||||
ENV CONFIG_PATH='/usr/src/service_man/config/api_config.yml'
|
||||
|
||||
RUN touch __init__.py
|
Reference in New Issue
Block a user