Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################################################################################################
# Build the Go binary for the Gateway
############################################################################################################
FROM golang:1.21-alpine AS builder-casaos-gateway
FROM golang:1.26-alpine AS builder-casaos-gateway

WORKDIR /app

Expand All @@ -27,7 +27,7 @@ RUN mkdir -p /var/run/casaos/ && echo -n "{}" >> /var/run/casaos/routes.json
############################################################################################################
# Build the Go binary for the User Service
############################################################################################################
FROM golang:1.21-alpine AS builder-casaos-user-service
FROM golang:1.26-alpine AS builder-casaos-user-service

WORKDIR /app

Expand Down Expand Up @@ -64,7 +64,7 @@ COPY ./CasaOS-UserService/build/sysroot/etc/casaos/user-service.conf.sample /etc
############################################################################################################
# Build the Go binary for the MessageBus
############################################################################################################
FROM golang:1.21-alpine AS builder-casaos-message-bus
FROM golang:1.26-alpine AS builder-casaos-message-bus

WORKDIR /app

Expand Down Expand Up @@ -98,7 +98,7 @@ COPY ./CasaOS-MessageBus/build/sysroot/etc/casaos/message-bus.conf.sample /etc/c
############################################################################################################
# Build the Go binary for the AppManagement
############################################################################################################
FROM golang:1.21-alpine AS builder-casaos-app-management
FROM golang:1.26-alpine AS builder-casaos-app-management

WORKDIR /app

Expand Down Expand Up @@ -136,7 +136,7 @@ COPY ./CasaOS-AppManagement/build/sysroot/etc/casaos/env /etc/casaos/env
############################################################################################################
# Build the Go binary for the LocalStorage
############################################################################################################
FROM golang:1.21-alpine AS builder-casaos-local-storage
FROM golang:1.26-alpine AS builder-casaos-local-storage

WORKDIR /app

Expand Down Expand Up @@ -196,7 +196,7 @@ RUN pnpm run build
############################################################################################################
# Build the Go binary for the CasaOS Main
############################################################################################################
FROM golang:1.21-alpine AS builder-casaos-main
FROM golang:1.26-alpine AS builder-casaos-main

WORKDIR /app

Expand Down Expand Up @@ -236,7 +236,7 @@ COPY ./CasaOS/build/sysroot/etc/casaos/casaos.conf.sample /etc/casaos/casaos.con
############################################################################################################
# Build the Go binary for the CasaOS Cli
############################################################################################################
FROM golang:1.21-alpine AS builder-casaos-cli
FROM golang:1.26-alpine AS builder-casaos-cli

WORKDIR /app

Expand Down
14 changes: 7 additions & 7 deletions Dockerfile.custom
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
############################################################################################################
# Build the Go binary for the Gateway
############################################################################################################
FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS builder-casaos-gateway
FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder-casaos-gateway

WORKDIR /app

Expand All @@ -30,7 +30,7 @@ RUN mkdir -p /var/run/casaos/ && echo -n "{}" >> /var/run/casaos/routes.json
############################################################################################################
# Build the Go binary for the User Service
############################################################################################################
FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS builder-casaos-user-service
FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder-casaos-user-service

WORKDIR /app

Expand Down Expand Up @@ -67,7 +67,7 @@ COPY ./CasaOS-UserService/build/sysroot/etc/casaos/user-service.conf.sample /etc
############################################################################################################
# Build the Go binary for the MessageBus
############################################################################################################
FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS builder-casaos-message-bus
FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder-casaos-message-bus

WORKDIR /app

Expand Down Expand Up @@ -102,7 +102,7 @@ COPY ./CasaOS-MessageBus/build/sysroot/etc/casaos/message-bus.conf.sample /etc/c
############################################################################################################
# Build the Go binary for the AppManagement
############################################################################################################
FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS builder-casaos-app-management
FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder-casaos-app-management

WORKDIR /app

Expand Down Expand Up @@ -140,7 +140,7 @@ COPY ./CasaOS-AppManagement/build/sysroot/etc/casaos/env /etc/casaos/env
############################################################################################################
# Build the Go binary for the LocalStorage
############################################################################################################
FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS builder-casaos-local-storage
FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder-casaos-local-storage

WORKDIR /app

Expand Down Expand Up @@ -202,7 +202,7 @@ RUN pnpm run build
############################################################################################################
# Build the Go binary for the CasaOS Main
############################################################################################################
FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS builder-casaos-main
FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder-casaos-main

WORKDIR /app

Expand Down Expand Up @@ -243,7 +243,7 @@ COPY ./CasaOS/build/sysroot/etc/casaos/casaos.conf.sample /etc/casaos/casaos.con
############################################################################################################
# Build the Go binary for the CasaOS Cli
############################################################################################################
FROM --platform=$BUILDPLATFORM golang:1.21-alpine AS builder-casaos-cli
FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder-casaos-cli

WORKDIR /app

Expand Down
Loading