sent-file-fast-serve/Dockerfile

11 lines
275 B
Docker
Raw Permalink Normal View History

2024-11-30 11:49:52 +00:00
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"]