This repository has been archived on 2026-06-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Test-assignments/nginx-python/dockerfile
T
2025-11-13 22:46:11 +03:00

9 lines
78 B
Docker

FROM python:3.13-slim
WORKDIR /app
COPY . .
CMD ["python", "src/main.py"]