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 76f505af06
All checks were successful
continuous-integration/drone/push Build is passing
docker
2022-10-20 02:59:49 +10:00

14 lines
256 B
Docker

FROM node:16 as build-step
RUN mkdir -p /app
WORKDIR /app
COPY package.json /app
RUN npm install
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