20 lines
537 B
Docker
20 lines
537 B
Docker
# stage1 as builder
|
|
FROM node:20-alpine AS builder
|
|
|
|
# copy the package.json to install dependencies
|
|
COPY package.json ./
|
|
|
|
# Install the dependencies and make the folder
|
|
RUN npm install --legacy-peer-deps && mkdir /src && mv ./node_modules ./src
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
|
# Build the project and copy the files
|
|
RUN npm run build
|
|
#RUN node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build -- --deploy-url=/ --prod
|
|
|
|
EXPOSE 3000
|
|
## Run the production server.
|
|
CMD ["npm", "run", "serve", "--", "--host", "0.0.0.0", "--no-open"]
|