onlinepython / Dockerfile
pythononlinegcc's picture
Create Dockerfile
4e48233 verified
raw
history blame contribute delete
141 Bytes
FROM python:3.14.2
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]