4 lines
73 B
Text
4 lines
73 B
Text
|
|
FROM python:3.13-slim
|
||
|
|
WORKDIR /app
|
||
|
|
COPY . /app
|
||
|
|
CMD ["python3", "test.py"]
|