This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/Dockerfile
Simple_Not 95adcbe2b9
Some checks failed
continuous-integration/drone/push Build is failing
docker-build re
2022-10-20 12:02:32 +10:00

26 lines
374 B
Docker

FROM node:16 as build-step
RUN mkdir -p /app
WORKDIR /app
COPY package.json /app
RUN npm install
FROM build-step as build-step2
WORKDIR /app
#COPY . /app
RUN npm run build --prod
FROM build-step2
WORKDIR /app
COPY . /app
RUN npm run build --prod
CMD npm run start
# FROM nginx:1.20.1
# COPY --from=build-step /app/dist/nedvach /usr/share/nginx/html
# EXPOSE 4200:80