1
0
Fork 0
hello-lemons/Dockerfile

16 lines
300 B
Docker
Raw Permalink Normal View History

2025-04-25 08:43:08 +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
COPY dist/. ${APP_DIR}
WORKDIR ${APP_DIR}
EXPOSE 80
RUN ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime && echo ${TZ} > /etc/timezone