test1/dockerfile
Vladislav ad4636e4b8
Some checks failed
CI Pipeline / lint (push) Failing after 3m42s
CI Pipeline / test (push) Successful in 18s
CI Pipeline / build (push) Has been skipped
test pipeline 1
2025-05-21 21:15:44 +03:00

7 lines
139 B
Plaintext

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