mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-05-06 20:42:52 +08:00
14 lines
189 B
Docker
14 lines
189 B
Docker
FROM node:18-alpine AS build
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./BillNote_frontend /app
|
|
|
|
RUN npm install && npm run build
|
|
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|