9 lines
197 B
Docker
9 lines
197 B
Docker
FROM python:3.13-bookworm
|
|
|
|
COPY ./src /src
|
|
|
|
RUN apt update
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
|
|
|
CMD [ "poetry", "install" ]
|
|
CMD [ "poetry", "run", "python", "/src/main.py" ] |