Add frontend docker
This commit is contained in:
parent
c51f984267
commit
20e8b8d37f
2 changed files with 23 additions and 2 deletions
|
|
@ -0,0 +1,6 @@
|
|||
FROM node:current-slim
|
||||
WORKDIR /app-frontend
|
||||
COPY ["package.json", "package-lock.json*", "./"]
|
||||
RUN npm install --NODE_ENV
|
||||
RUN npm install -g @angular/cli
|
||||
COPY . .
|
||||
Reference in a new issue