mirror of
https://github.com/wahyd4/youxiang.git
synced 2026-08-09 05:16:08 +10:00
13 lines
240 B
Docker
13 lines
240 B
Docker
# 说明该镜像以哪个镜像为基础
|
|
FROM python:3.7-slim
|
|
|
|
RUN mkdir /youxiang
|
|
WORKDIR /youxiang
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
RUN pip install -r requirements.txt
|
|
COPY . /youxiang
|
|
|
|
ENTRYPOINT ["python", "/youxiang/main.py"]
|