mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-10 20:39:48 +08:00
16 lines
224 B
Docker
16 lines
224 B
Docker
FROM nginx:1.21.1-alpine
|
|
|
|
|
|
LABEL maintainer="EdwinBetanc0urt@outlook.com" \
|
|
description="ADempiere-Vue"
|
|
|
|
|
|
ENV API_URL="https://api.erpya.com"
|
|
|
|
|
|
COPY build/start.sh .
|
|
COPY dist/* /usr/share/nginx/html/
|
|
|
|
|
|
CMD 'sh' 'start.sh'
|