mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-17 00:15:53 +08:00
9 lines
108 B
Docker
9 lines
108 B
Docker
FROM nginx:alpine
|
|
|
|
RUN mkdir -p /app/
|
|
COPY ./dist /app/
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
|
|
|
|
EXPOSE 80
|