Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update golang docker tag to v1.23 #2

Closed
wants to merge 1 commit into from
Closed
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 --platform=$BUILDPLATFORM golang:1.21-alpine AS builder-casaos-gateway
FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS builder-casaos-gateway

WORKDIR /app

Expand All @@ -28,7 +28,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.23-alpine AS builder-casaos-user-service

WORKDIR /app

Expand Down Expand Up @@ -65,7 +65,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.23-alpine AS builder-casaos-message-bus

WORKDIR /app

Expand Down Expand Up @@ -100,7 +100,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.23-alpine AS builder-casaos-app-management

WORKDIR /app

Expand Down Expand Up @@ -138,7 +138,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.23-alpine AS builder-casaos-local-storage

WORKDIR /app

Expand Down Expand Up @@ -200,7 +200,7 @@ RUN yarn 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.23-alpine AS builder-casaos-main

WORKDIR /app

Expand Down Expand Up @@ -241,7 +241,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.23-alpine AS builder-casaos-cli

WORKDIR /app

Expand Down