10 lines
No EOL
147 B
Text
10 lines
No EOL
147 B
Text
FROM node:16-alpine
|
|
|
|
COPY ./ui /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN npm ci && \
|
|
node_modules/.bin/ng build
|
|
|
|
CMD ["node_modules/.bin/ng", "build", "--watch"] |