Add Dockerfile

This commit is contained in:
Jeddunk 2024-07-25 19:57:13 +02:00
parent 589f3f9b68
commit 565b2adeb1

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
ARG NODE_VERSION=20
ARG ALPINE_VERSION=3.19
FROM node:${NODE_VERSION}-alpine${ALPINE_VERSION} AS builder
WORKDIR /build-stage
COPY package*.json ./
RUN npm ci
# Copy the the files you need
COPY . ./
RUN npm run build
FROM nginx:stable-alpine${ALPINE_VERSION}
COPY --from=builder /build-stage/build /usr/share/nginx/html/