1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 20:39:48 +08:00
vue-element-admin/build/Dockerfile.prod
Edwin Betancourt 12c3aef872
feat: Add support docker hub continuous delivery. (#1016)
* feat: Add support docker hub continuous delivery.

* remove comments
2021-08-05 11:49:45 -04:00

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'