generated from container/tmpl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
522 B
19 lines
522 B
2 years ago
|
FROM python:3.8 AS python_base
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN pip install --upgrade pip -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com && \
|
||
|
pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com && \
|
||
|
cp SimHei.ttf /usr/local/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf && \
|
||
|
pyinstaller -F main.py --distpath=.
|
||
|
|
||
|
FROM debian:11-slim
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY --from=python_base /app/main /app/config.ini ./
|
||
|
|
||
|
CMD ["./main"]
|