angular.dockerfile

This commit is contained in:
Artur 2024-10-02 20:05:12 +02:00
parent e562350254
commit c54cf24a1c
1 changed files with 11 additions and 0 deletions

11
angular.dockerfile Normal file
View File

@ -0,0 +1,11 @@
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"]