745719408@qq.com
2 years ago
2 changed files with 19 additions and 0 deletions
@ -0,0 +1,10 @@
|
||||
FROM arm64v8/python:3.10.9 |
||||
ADD sources.list /etc/apt |
||||
ADD . /flask |
||||
WORKDIR /flask |
||||
RUN apt update -y && apt upgrade -y && apt install build-essential manpages-dev -y \ |
||||
&& rm -rf /var/cache/apt/* \ |
||||
&& pip3 install --upgrade pip -i https://mirrors.aliyun.com/pypi/simple --no-cache-dir\ |
||||
&& pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple --no-cache-dir |
||||
EXPOSE 2026 |
||||
CMD ["python3","./manager.py"] |
@ -0,0 +1,9 @@
|
||||
FROM node:14-buster AS builder |
||||
ADD . /vue |
||||
WORKDIR /vue |
||||
RUN npm install --registry=https://registry.npm.taobao.org && npm run build:prod |
||||
|
||||
FROM llody/nginx:1.22.0-base |
||||
WORKDIR /www |
||||
COPY --from=builder /vue/http-ops.conf /etc/nginx/conf.d/default.conf |
||||
COPY --from=builder /vue/dist dist/ |
Loading…
Reference in new issue