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&& \ | |
rm -rf /var/lib/apt/lists/* | |
WORKDIR /zmal | |
RUN git clone -b use --depth=1 https://github.com/kmizmal/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 |