🚀 👷 Add CI/CD pipeline
continuous-integration/drone/push Build is failing Details

master
Alix JEUDI--LEMOINE 1 week ago
parent 49a9e47997
commit cb4bbc2dde

@ -0,0 +1,45 @@
kind: pipeline
type: docker
name: Administration CI/CD
trigger:
event:
- push
steps:
- name: code-analysis
image: hub.codefirst.iut.uca.fr/alix.jeudi--lemoine/codefirst-dronesonarplugin-node:latest
commands:
- npm install
- /opt/sonar-scanner/bin/sonar-scanner
-Dsonar.login=$PLUGIN_SONAR_TOKEN
-Dsonar.projectKey=SAE3A_MemoryMap-admin
-Dsonar.sources=src
-Dsonar.exclusions=**/*.spec.ts,**/node_modules/**
settings:
sonar_token:
from_secret: SECRET_SONAR_TOKEN
- name: docker-build-and-push
image: plugins/docker
settings:
dockerfile: docker/Dockerfile
context: .
registry: hub.codefirst.iut.uca.fr
mirror: https://proxy.iut.uca.fr:8443
repo: hub.codefirst.iut.uca.fr/alix.jeudi--lemoine/memorymap_admin
username:
from_secret: SECRET_REGISTRY_USERNAME
password:
from_secret: SECRET_REGISTRY_PASSWORD
depends_on: [ code-analysis ]
- name: deploy-admin
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
environment:
IMAGENAME: hub.codefirst.iut.uca.fr/alix.jeudi--lemoine/memorymap_admin:latest
CONTAINERNAME: admin
COMMAND: create
OVERWRITE: true
ADMINS: alixjeudi--lemoine,alexisferon,mathisframit,maxencejouannet
depends_on: [ docker-build-and-push ]

@ -0,0 +1,17 @@
# Official Node.js image
FROM node:22-slim
# Set workdir
WORKDIR /app
# Copy the Angular app folder in the container
COPY . .
# Install dependencies
RUN npm install
# Expose port
EXPOSE 80
# Start the application
CMD [ "npm", "run", "production" ]

@ -6,7 +6,8 @@
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
"test": "ng test",
"production": "ng serve --host 0.0.0.0 --port 80 --configuration=production"
},
"private": true,
"dependencies": {

Loading…
Cancel
Save