From 307eea106bdf98bdb01e8250bdb42d7d6d4a3ad2 Mon Sep 17 00:00:00 2001 From: cheetah Date: Sat, 5 Apr 2025 05:03:31 +0200 Subject: [PATCH] added ci/cd --- .forgejo/workflows/build.yaml | 25 +++++++++++++++++++++++++ Dockerfile | 16 ++++++++++++++++ compose.yaml | 8 ++++++++ 3 files changed, 49 insertions(+) create mode 100644 .forgejo/workflows/build.yaml create mode 100644 Dockerfile create mode 100644 compose.yaml diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml new file mode 100644 index 0000000..0c6b4f2 --- /dev/null +++ b/.forgejo/workflows/build.yaml @@ -0,0 +1,25 @@ +name: build +on: + push: + pull_request: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-22.04 + steps: + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + registry: git.cheetah.cat + username: ${{ github.actor }} + password: ${{ secrets.PAT_TOKEN }} + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Build and push + uses: docker/build-push-action@v6 + with: + platforms: linux/amd64 + push: true + tags: git.cheetah.cat/smartpager/${{ github.event.repository.name }}:latest \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bcaf721 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +ARG NODE_VERSION=23.0.0 + +FROM node:${NODE_VERSION}-alpine + +ENV NODE_ENV production + +WORKDIR /usr/src/app + +COPY . . + +RUN npm install + +USER node +EXPOSE 3250 + +CMD node index.js \ No newline at end of file diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..110ed00 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,8 @@ +services: + server: + build: + context: . + environment: + NODE_ENV: production + ports: + - 3250:3250