vue3-element-admin/Dockerfile

17 lines
303 B
Docker
Raw Normal View History

2025-02-24 08:57:37 +00:00
FROM nginx:1.25.3-alpine
LABEL "authors"="suguo.yao"
LABEL "email"="ysg@myschools.me"
ENV TZ=Asia/Shanghai \
LANG=C.UTF-8 \
APP_DIR=/usr/share/nginx/html
2025-02-24 09:56:49 +00:00
COPY dist/. ${APP_DIR}
2025-02-24 08:57:37 +00:00
WORKDIR ${APP_DIR}
EXPOSE 80
RUN ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime \
&& echo ${TZ} > /etc/timezone