新增arm64环境Dockerfile

pull/48/head
745719408@qq.com 2023-01-16 13:42:55 +08:00
parent df1eaace6a
commit 0e2db428ac
2 changed files with 19 additions and 0 deletions

View File

@ -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"]

View File

@ -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/