shippinglabel-converter/Dockerfile
2025-03-16 00:42:49 +01:00

17 lines
428 B
Docker

FROM python:3.12
WORKDIR /code
COPY poetry.lock pyproject.toml /code/
RUN curl -sSL https://install.python-poetry.org | python3 -
# Project initialization:
RUN /root/.local/bin/poetry install --no-interaction --no-ansi
# Creating folders, and files for a project:
COPY main.py /code
COPY convert.py /code
COPY templates/ /code/templates
COPY static/ /code/static
CMD ["/root/.local/bin/poetry", "run", "python", "main.py"]