py_test/Dockerfile

4 lines
72 B
Text
Raw Normal View History

2025-10-29 15:40:52 -03:00
FROM python:3.13-slim
WORKDIR /app
COPY . /app
2025-10-29 15:49:35 -03:00
CMD ["python", "test.py"]