chore: optimize docker for synology v4.0.7
Some checks are pending
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
CI / build (push) Blocked by required conditions

This commit is contained in:
KV-Tube Deployer 2026-03-24 21:59:31 +07:00
parent 714534389c
commit 8844007f18
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ RUN apk add --no-cache git gcc musl-dev
COPY backend/go.mod backend/go.sum ./ COPY backend/go.mod backend/go.sum ./
RUN go mod download RUN go mod download
COPY backend/ ./ COPY backend/ ./
RUN CGO_ENABLED=1 GOOS=linux go build -o kv-tube . RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o kv-tube .
# ---- Frontend Builder ---- # ---- Frontend Builder ----
FROM node:20-alpine AS frontend-deps FROM node:20-alpine AS frontend-deps

View file

@ -5,7 +5,7 @@ version: '3.8'
services: services:
kv-tube-app: kv-tube-app:
image: git.khoavo.myds.me/vndangkhoa/kv-tube-app:v4.0.6 image: git.khoavo.myds.me/vndangkhoa/kv-tube-app:v4.0.7
container_name: kv-tube-app container_name: kv-tube-app
platform: linux/amd64 platform: linux/amd64
restart: unless-stopped restart: unless-stopped