You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
311 B
Docker
19 lines
311 B
Docker
FROM node:18.6.0-buster-slim
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci && mkdir /angular && mv ./node_modules ./angular
|
|
|
|
WORKDIR /angular
|
|
RUN npm install -g @angular/cli
|
|
|
|
RUN npm i
|
|
|
|
COPY . .
|
|
ADD okteto-stack.yaml okteto-stack.yaml
|
|
COPY . .
|
|
|
|
EXPOSE 32333
|
|
|
|
CMD ["npm", "start"] |