File size: 168 Bytes
00c68f3
 
 
 
 
 
 
1
2
3
4
5
6
7
8
FROM python:latest
WORKDIR /usr/src/nginx
COPY . .

RUN pip install -r requirements.txt
CMD export PYTHONPATH="${PYTHONPATH}:./src" && python3 ./src/app.py
EXPOSE 8080