mirror of
https://github.com/lemeow125/Notes.git
synced 2025-04-27 10:11:17 +08:00
vault backup: 2024-10-17 14:49:30
This commit is contained in:
parent
72885882b8
commit
1310639bc5
5 changed files with 55 additions and 7 deletions
22
Dockerfile
Normal file
22
Dockerfile
Normal file
|
@ -0,0 +1,22 @@
|
|||
FROM node:18-alpine as build
|
||||
|
||||
WORKDIR /usr/local/app
|
||||
|
||||
COPY ./ /usr/local/app/
|
||||
|
||||
RUN npm install
|
||||
|
||||
RUN npm run build
|
||||
|
||||
|
||||
FROM nginx:latest
|
||||
|
||||
RUN rm -rf /usr/share/nginx/html/*
|
||||
|
||||
COPY --from=build /usr/local/app/ /usr/share/nginx/html
|
||||
|
||||
COPY nginx/nginx.conf /etc/nginx/conf.d/default.conf
|
||||
|
||||
RUN service nginx restart
|
||||
|
||||
EXPOSE 80
|
Loading…
Add table
Add a link
Reference in a new issue