Files
test-app/Dockerfile
akula 4ef44fc2ed
Some checks failed
ci/woodpecker/push/publish Pipeline failed
1
2024-12-03 12:29:43 +03:00

9 lines
122 B
Docker

FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "run.py"]