This commit is contained in:
parent
7ea860b79c
commit
ba4ee42c34
2 changed files with 52 additions and 0 deletions
32
.forgejo/workflows/build.yaml
Normal file
32
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,32 @@
|
|||
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.GITHUB_TOKEN }}
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Build and test
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
target: test
|
||||
load: true
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
target: prod
|
||||
tags: git.cheetah.cat/smartpager/${{ github.event.repository.name }}:latest
|
20
Dockerfile
Normal file
20
Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
|||
ARG NODE_VERSION=23.0.0
|
||||
|
||||
FROM node:${NODE_VERSION}-alpine
|
||||
|
||||
ENV NODE_ENV production
|
||||
|
||||
RUN apk add chromium python3 g++ make py3-pip
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN npm install
|
||||
|
||||
USER node
|
||||
EXPOSE 3000
|
||||
EXPOSE 3001
|
||||
|
||||
CMD node index.js
|
Loading…
Add table
Reference in a new issue