jgnvhl / Dockerfile
hfgty's picture
Upload 5 files
023fb9c verified
raw
history blame contribute delete
No virus
171 Bytes
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