zed2api / Dockerfile
smgc's picture
Create Dockerfile
7757f11 verified
raw
history blame
445 Bytes
FROM python:3.9-slim
RUN apt-get update && apt-get install -y --no-install-recommends tzdata git && \
rm -rf /var/lib/apt/lists/*
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
WORKDIR /app
RUN git clone https://github.com/cnbeining/Zed2API.git .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
CMD ["uvicorn", "app:asgi_app", "--host", "0.0.0.0", "--port", "8000"]