File size: 147 Bytes
0928d05
 
 
 
 
 
1
2
3
4
5
6
FROM python:3.8-slim-buster
WORKDIR /service
COPY requirements.txt .
COPY . ./
RUN pip install -r requirements.txt
ENTRYPOINT ["python3", "app.py"]