Files
test-app/Dockerfile
akula 803c73fd6a
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
4
2024-12-04 14:50:12 +03:00

11 lines
135 B
Docker

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