sent-file-fast-serve/Dockerfile
2024-11-30 19:49:52 +08:00

11 lines
275 B
Docker

FROM python:3.9.5-slim-buster
LABEL author="Lan"
LABEL email="vast@tom.com"
COPY . /app
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 12345
CMD ["python","main.py"]