Answer the question
In order to leave comments, you need to log in
How to find out the content of an image?
I have dockerized an angular application with the following file:
FROM node:alpine AS builder
WORKDIR /app
COPY . .
RUN npm install && \
npm run build
FROM nginx:alpine
COPY --from=builder /app/dist/* /usr/share/nginx/html/
$ docker run -p 80:80 my-angular-app:v1
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question