More TEsting

This commit is contained in:
Fred Boniface
2023-06-13 13:38:59 +01:00
parent b24447ca3d
commit 234915f568
8 changed files with 215 additions and 12 deletions

12
dockerfile Normal file
View File

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