sleppy / Dockerfile
sadg456's picture
Create Dockerfile
4ecfbdd verified
raw
history blame contribute delete
500 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 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