KI-AGENT: Webseite in Docker-Workflow aufgenommen
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 18s
Build and Push Docker Images / build-frontend (push) Successful in 10s
Build and Push Docker Images / build-website (push) Successful in 26s
Build and Push Docker Images / build-docs (push) Successful in 10s

This commit is contained in:
2026-05-19 22:01:54 +02:00
parent 85ac33c334
commit 14470da7dc
3 changed files with 58 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
name: Build and Push Docker Images
run-name: Build Backend, Frontend & Docs by @${{ github.actor }}
run-name: Build Backend, Frontend, Website & Docs by @${{ github.actor }}
on: [push]
@@ -135,3 +135,35 @@ jobs:
push: true
tags: ${{ steps.meta-docs.outputs.tags }}
labels: ${{ steps.meta-docs.outputs.labels }}
build-website:
#needs: verify-docs-sync
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Log in to Docker Registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY_HOST }}
username: ${{ env.ACTOR }}
password: ${{ vars.CI_TOKEN }}
- name: Extract metadata (tags, labels) for Website
id: meta-website
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY_HOST }}/${{ env.IMAGE_NAME }}/website
tags: |
type=ref,event=branch
type=ref,event=tag
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
- name: Build and push Website
uses: docker/build-push-action@v4
with:
context: ./website
push: true
tags: ${{ steps.meta-website.outputs.tags }}
labels: ${{ steps.meta-website.outputs.labels }}

6
website/.dockerignore Normal file
View File

@@ -0,0 +1,6 @@
node_modules
.nuxt
.output
.data
.env
npm-debug.log*

19
website/Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:20-alpine AS builder
WORKDIR /app/website
COPY package.json package-lock.json ./
RUN npm ci
COPY . ./
RUN npm run build
FROM node:20-alpine AS runner
WORKDIR /app/website
ENV NODE_ENV=production
ENV NUXT_HOST=0.0.0.0
ENV NUXT_PORT=3000
COPY --from=builder /app/website/.output ./.output
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]