pred-maintenance-app / Dockerfile
Meera2602's picture
try1
0928d05
raw
history blame contribute delete
No virus
147 Bytes
FROM python:3.8-slim-buster
WORKDIR /service
COPY requirements.txt .
COPY . ./
RUN pip install -r requirements.txt
ENTRYPOINT ["python3", "app.py"]