14 lines
338 B
Docker
14 lines
338 B
Docker
FROM node:20@sha256:d3c8ababe9566f9f3495d0d365a5c4b393f607924647dd52e75bf4f8a54effd3 AS build
|
|
ARG PUBLIC_BASE_API_URL=
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . ./
|
|
RUN npm install && npm run build
|
|
|
|
FROM nginx:1.27.1-alpine@sha256:c04c18adc2a407740a397c8407c011fc6c90026a9b65cceddef7ae5484360158
|
|
|
|
EXPOSE 80
|
|
|
|
COPY --from=build /app/build /usr/share/nginx/html
|