Files
frontend-hideyoshi.com/Dockerfile

12 lines
157 B
Docker

FROM node
WORKDIR /app
COPY . .
RUN npm install
RUN npm install -g @angular/cli@16
EXPOSE 5000-7000
CMD ng build --configuration=production && npm start