Agregado soporte de docker para el frontend
This commit is contained in:
11
frontend/Dockerfile
Normal file
11
frontend/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM node:14-alpine
|
||||
|
||||
WORKDIR /angular
|
||||
|
||||
COPY package.json /angular
|
||||
|
||||
RUN npm install
|
||||
|
||||
COPY . /angular
|
||||
|
||||
ENTRYPOINT ["/angular/node_modules/@angular/cli/bin/ng", "serve", "--host", "0.0.0.0"]
|
||||
Reference in New Issue
Block a user