diff options
author | Alex Shnitman <alexta69@gmail.com> | 2022-06-23 23:30:09 +0300 |
---|---|---|
committer | Alex Shnitman <alexta69@gmail.com> | 2022-06-23 23:30:09 +0300 |
commit | ad0eab880c4a893f174141050d4d53e9f5f35868 (patch) | |
tree | 3fa981dfa0394b1d7dd76e9254286db238f4e7c3 /Dockerfile | |
parent | refactor of the entrypoint feature (diff) | |
download | metube-ad0eab880c4a893f174141050d4d53e9f5f35868.tar.gz metube-ad0eab880c4a893f174141050d4d53e9f5f35868.tar.bz2 metube-ad0eab880c4a893f174141050d4d53e9f5f35868.zip |
angular 13 and bootstrap 5
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ FROM node:lts-alpine as builder WORKDIR /metube
COPY ui ./
RUN npm ci && \
- node_modules/.bin/ng build --prod
+ node_modules/.bin/ng build --configuration production
FROM python:3.8-alpine
|