s / Dockerfile
sadg456's picture
Update Dockerfile
e07f980 verified
raw
history blame contribute delete
515 Bytes
FROM ubuntu:22.04
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y git python3 python3-pip tzdata curl && \
rm -rf /var/lib/apt/lists/*
WORKDIR /zmal
RUN git clone --depth=1 -b main https://github.com/wyf9/sleepy.git
WORKDIR /zmal/sleepy
RUN pip install --no-cache-dir -r requirements.txt
RUN chmod -R 777 /zmal/sleepy
EXPOSE 7860
COPY . /zmal/sleepy
CMD python3 server.py