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 76ac607afa
Some checks reported errors
continuous-integration/drone/push Build was killed
docker-build re
2022-10-20 12:03:24 +10:00

19 lines
288 B
Docker

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