Compare commits

..

No commits in common. "32b177a98b985deccd3f5991ec70ec7a30a7e973" and "5548f9cc048cbc66054ba3a32acc4b92e6c758b0" have entirely different histories.

37 changed files with 23 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
## ANGULAR THEME BUILD
FROM node:16-alpine as angular
WORKDIR angular
COPY inc ./
RUN npm install -g @angular/cli
RUN ng config -g cli.warnings.versionMismatch false
RUN npm install
RUN npm run build:ssr --prod --proxy-config
CMD npm run serve:ssr -c production --proxy-config

8
docker-compose.yml Normal file
View File

@ -0,0 +1,8 @@
version: "3"
services:
frontend:
image: registry.audio-lab.org/cear
build: .
ports:
- 0.0.0.0:${APP_PORT_HTTP}:4000
restart: always

View File

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 948 B

After

Width:  |  Height:  |  Size: 948 B