EPANET_Docker / Dockerfile
razaali10's picture
Update Dockerfile
776f7d4 verified
raw
history blame contribute delete
251 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y git && apt-get clean && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
CMD ["python", "app.py"]