mirror of
https://github.com/wahyd4/youxiang.git
synced 2026-08-09 05:16:08 +10:00
15 lines
355 B
Docker
15 lines
355 B
Docker
FROM python:3.7-slim
|
|
|
|
MAINTAINER Snow Wang <admin@farseer.vip>
|
|
|
|
WORKDIR /youxiang
|
|
COPY requirements.txt requirements.txt
|
|
COPY . /youxiang
|
|
|
|
ENV TZ=Asia/Shanghai
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone && \
|
|
mkdir /youxiang && \
|
|
pip install -r requirements.txt
|
|
|
|
ENTRYPOINT ["python", "/youxiang/main.py"]
|