add docker for release; add cicdg
Build and Deploy Docker / build (push) Successful in 3m49s
Build and Deploy Docker / deploy (push) Successful in 30s

This commit is contained in:
2026-07-14 15:01:23 +02:00
parent 50186b6840
commit 5e3595f97f
4 changed files with 89 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
dist
node_modules
package-lock.json
README.md
+48
View File
@@ -0,0 +1,48 @@
name: Build and Deploy Docker
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: git.rhost.ovh
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: ./services/Dockerfile
push: true
tags: git.rhost.ovh/${{ github.repository }}:latest
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy via SSH
uses: appleboy/ssh-action@v1.2.0
with:
host: ${{ secrets.SERVER_HOST }}
port: ${{ secrets.SERVER_PORT }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.SERVER_SSH_KEY }}
script: |
cd /home/ryjek/docker/sprawozdania
docker compose pull frontend
docker compose up -d frontend
+15
View File
@@ -0,0 +1,15 @@
FROM node:22.15 as build
RUN mkdir /public
WORKDIR /public
COPY . .
RUN npm install
RUN npm run build
FROM nginx:alpine
COPY --from=build /public/dist /usr/share/nginx/html
COPY ./services/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
+22
View File
@@ -0,0 +1,22 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location /api/ {
proxy_pass http://backend/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
try_files $uri $uri/ /index.html;
}
}