Compare commits

..

No commits in common. "66026d667d34a51355ab9fcbbe20736fbbf8106c" and "9a1ff79f66d7412f20962fbf069f09b1c4e219f1" have entirely different histories.

3 changed files with 0 additions and 42 deletions

View file

@ -1,4 +0,0 @@
# NodeJs
node_modules/
dist/
.git/

View file

@ -1,22 +0,0 @@
FROM node:18-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . /app
RUN npm run build
FROM nginx:18-alpine as prod
WORKDIR /app
COPY --from=build /app/dist /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

View file

@ -1,16 +0,0 @@
worker_processes 4;
events { worker_connections 1024; }
http {
include mime.types;
server {
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
}