Files
filecodebox/Dockerfile
T
2023-01-10 13:42:42 +08:00

11 lines
200 B
Docker

FROM python:3.9.5-slim-buster
LABEL author="Lan"
LABEL email="vast@tom.com"
LABEL version="1.5.9.2"
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 12345
CMD ["python","main.py"]