hs3-baza-zasobow-dashboard/Dockerfile

16 lines
234 B
Text
Raw Permalink Normal View History

2023-07-09 15:36:04 +02:00
FROM python:3.11
2023-07-09 15:46:02 +02:00
RUN mkdir /app
2023-07-09 16:00:49 +02:00
COPY / /app
2023-07-09 15:46:02 +02:00
2023-07-09 15:36:04 +02:00
COPY pyproject.toml poetry.lock /app/
WORKDIR /app
ENV PYTHONPATH=${PYTHONPATH}:${PWD}
RUN pip install poetry
RUN poetry config virtualenvs.create false
2023-07-09 15:46:02 +02:00
RUN poetry install --only main
2023-07-09 15:36:04 +02:00