Compare commits

..

8 Commits

3 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ jobs:
type=ref,event=branch type=ref,event=branch
type=semver,pattern={{raw}} type=semver,pattern={{raw}}
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3 uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
- name: Login to fai.st docker registry - name: Login to fai.st docker registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with: with:
@ -43,7 +43,7 @@ jobs:
username: ${{ secrets.DOCKER_USER }} username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }} password: ${{ secrets.DOCKER_PASS }}
- name: Build and push - name: Build and push
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d # v6 uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6
with: with:
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
context: . context: .

View File

@ -1 +1 @@
nodejs 23.6.0 nodejs 23.7.0

View File

@ -1,4 +1,4 @@
FROM node:23.6.0-alpine AS builder FROM node:23.7.0-alpine AS builder
WORKDIR /app WORKDIR /app
RUN npm install -g typescript RUN npm install -g typescript
COPY package*.json ./ COPY package*.json ./
@ -6,7 +6,7 @@ RUN npm install
COPY . . COPY . .
RUN npm run build RUN npm run build
FROM node:23.6.0-alpine AS server FROM node:23.7.0-alpine AS server
WORKDIR /app WORKDIR /app
COPY package* ./ COPY package* ./
RUN npm install --production RUN npm install --production