py_test/Dockerfile

4 lines
79 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:57:37 -03:00
CMD ["python3", "-u", "test.py"]