1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-11 13:39:48 +08:00
骑着毛驴去纽约 526c083ab5
Create Dockerfile
2021-04-17 14:31:01 +08:00

7 lines
111 B
Docker

FROM node:lts-alpine
RUN npm install -g http-server
COPY . /app
WORKDIR /app
EXPOSE 8080
CMD [ "http-server" ]