Compare commits
No commits in common. "32b177a98b985deccd3f5991ec70ec7a30a7e973" and "5548f9cc048cbc66054ba3a32acc4b92e6c758b0" have entirely different histories.
32b177a98b
...
5548f9cc04
15
Dockerfile
Normal 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
@ -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
|
0
.gitignore → inc/.gitignore
vendored
0
package-lock.json → inc/package-lock.json
generated
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 948 B After Width: | Height: | Size: 948 B |