py_test/Dockerfile

4 lines
78 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:56:27 -03:00
CMD ["python", "-u", "test.py"]