Compare commits
11 Commits
Author | SHA1 | Date |
---|---|---|
|
ffc4368125 | |
|
b2e642e696 | |
|
727626d901 | |
|
d21b40205f | |
|
aa559cfc26 | |
|
f8ef6632e6 | |
|
e78c968274 | |
|
fa61b3ab31 | |
|
085bbaf278 | |
|
79ca8ff318 | |
|
a8f46108bf |
|
@ -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@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6
|
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6
|
||||||
with:
|
with:
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
context: .
|
context: .
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
nodejs 23.6.0
|
nodejs 23.7.0
|
||||||
|
|
|
@ -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
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 8.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 903 B |
Loading…
Reference in New Issue