c8a0ebe
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3 WORKDIR /http COPY main.py . RUN chmod +x main.py && python3 main.py init cf && chmod +x ./* EXPOSE 8080 CMD ["python3", "main.py", "start"] USER 10001