This commit is contained in:
Akis 2022-08-27 19:38:41 +03:00
parent 54234f010c
commit 6b2fe73fec
Signed by untrusted user: akis
GPG Key ID: 267BF5C6677944ED
2 changed files with 13 additions and 0 deletions

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
node_modules

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:16 AS build
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . ./
RUN npm run build
FROM nginx:1.23-alpine
COPY --from=build /app/build /usr/share/nginx/html
EXPOSE 80