9 lines
78 B
Plaintext
9 lines
78 B
Plaintext
FROM python:3.13-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "src/main.py"]
|
|
|