added ci/cd
Some checks failed
build / build (push) Failing after 6s

This commit is contained in:
cheetah 2025-04-05 05:03:31 +02:00
parent 17ecc25f83
commit 307eea106b
3 changed files with 49 additions and 0 deletions

View file

@ -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

16
Dockerfile Normal file
View file

@ -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

8
compose.yaml Normal file
View file

@ -0,0 +1,8 @@
services:
server:
build:
context: .
environment:
NODE_ENV: production
ports:
- 3250:3250