From 18b2308c9fc606c917e3b284371405e90bb67e91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 14 Jun 2021 09:42:23 +0200 Subject: [PATCH 1/3] add docker support --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9f81e6f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM node:latest AS build +ADD . /app +WORKDIR /app +RUN npm install && npm run build + +FROM nginx:stable +COPY --from=build /app/dist /usr/share/nginx/html +ADD nginx-site.conf /etc/nginx/conf.d/default.conf \ No newline at end of file From 8285f983273c57cd707d98b16a36d740012763eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 14 Jun 2021 09:42:58 +0200 Subject: [PATCH 2/3] add drone pipeline --- .drone.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..dcdc771 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,30 @@ +kind: pipeline +type: docker +name: default +steps: + - name: code-analysis + image: aosapps/drone-sonar-plugin + settings: + sonar_host: + from_secret: SONAR_HOST + sonar_token: + from_secret: SONAR_CODE + - name: kaniko + image: banzaicloud/drone-kaniko + settings: + registry: registry.kmlabz.com + repo: birbnetes/${DRONE_REPO_NAME} + username: + from_secret: DOCKER_USERNAME + password: + from_secret: DOCKER_PASSWORD + tags: + - latest + - ${DRONE_BUILD_NUMBER} + - name: ms-teams + image: kuperiu/drone-teams + settings: + webhook: + from_secret: TEAMS_WEBHOOK + when: + status: [ failure ] \ No newline at end of file From 46c4e2c305a9c51d95aaf9f2cb77c37544853f29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 14 Jun 2021 09:50:03 +0200 Subject: [PATCH 3/3] add nginx config --- nginx-site.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nginx-site.conf diff --git a/nginx-site.conf b/nginx-site.conf new file mode 100644 index 0000000..6c09d11 --- /dev/null +++ b/nginx-site.conf @@ -0,0 +1,12 @@ +server { + listen 80; + listen [::]:80; + server_name localhost; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file