first commit
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@ -0,0 +1,11 @@
|
||||
FROM python:3.13-bookworm
|
||||
|
||||
COPY ./src /src
|
||||
COPY ./requirements.txt /src
|
||||
|
||||
RUN apt update
|
||||
RUN apt install pipx
|
||||
RUN pipx install poetry
|
||||
|
||||
CMD [ "poetry", "install" ]
|
||||
CMD [ "poetry", "run", "python", "/src/main.py" ]
|
||||
Reference in New Issue
Block a user