Monitor / Dockerfile
yangtb24's picture
Rename Dockfile to Dockerfile
9b148e9 verified
raw
history blame contribute delete
173 Bytes
FROM python:3.9-slim-buster
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
CMD ["python", "app.py"]