17 lines
428 B
Docker
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"]
|