anand_plant2 / Dockerfile
ranchopanda0's picture
Update Dockerfile
94d291f verified
raw
history blame contribute delete
158 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python3", "app.py"]