Compare commits

...

2 commits

Author SHA1 Message Date
0b02481216 Merge branch 'main' of https://forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/DevFW-CICD/michals-silly-game-frontend
All checks were successful
ci / build (push) Successful in 1m22s
2025-04-16 12:45:27 +02:00
1c2be7dd74 package.json changed 2025-04-16 12:44:49 +02:00
2 changed files with 14 additions and 1 deletions

View file

@ -4,7 +4,7 @@
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build": "ng build --base-href /silly-game/ --deploy-url /silly-game/",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint"

13
push_container_image.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash
docker build --platform linux/arm64 -t michals-silly-game-frontend .
docker tag michals-silly-game-frontend forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/michals-silly-game-frontend:latest
docker login https://forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/
docker push forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/michals-silly-game-frontend:latest
docker logout
docker login