File size: 164 Bytes
dc2ed38
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3
WORKDIR /home/www

COPY main.py .

RUN chmod +x main.py && python3 main.py init && chmod 777 ./*

EXPOSE 8080

CMD ["python3", "main.py"]

USER 10001