This repository has been archived on 2026-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
review-front/Dockerfile

11 lines
151 B
Docker

FROM node:alpine
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN npm install -g @angular/cli
RUN npm install
CMD ["ng", "serve", "--host", "0.0.0.0"]