diff options
Diffstat (limited to 'dockerfile')
| -rw-r--r-- | dockerfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..54e36a0 --- /dev/null +++ b/dockerfile @@ -0,0 +1,9 @@ +FROM python:3.12-slim + +WORKDIR /app + +COPY . . + +RUN pip install -r requirements.txt + +CMD python3 main.py |