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

📣 Update golang Docker tag #600

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion apps/concourse-github-pr-resource/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ADD apps/concourse-github-pr-resource/scripts/install_git_crypt.sh install_git_c
RUN ./install_git_crypt.sh && rm ./install_git_crypt.sh
RUN rm -rf scripts

FROM golang:1.21 as builder
FROM golang:1.23 as builder
WORKDIR /go/src/github.com/telia-oss/github-pr-resource
ENV GOOS=$GOOS
ENV GOARCH=$GOARCH
Expand Down
2 changes: 1 addition & 1 deletion apps/cyphers-blackhole/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG VERSION
RUN apk add --update --no-cache tmux ttyd git && \
git clone -b $VERSION https://github.com/sirrobot01/debrid-blackhole.git /source

FROM --platform=$BUILDPLATFORM golang:1.22 as builder
FROM --platform=$BUILDPLATFORM golang:1.23 as builder

ARG TARGETPLATFORM
ARG BUILDPLATFORM
Expand Down
2 changes: 1 addition & 1 deletion apps/error-pages/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apk update && apk upgrade && \
RUN git clone -b $VERSION https://github.com/tarampampam/error-pages.git /source

# this stage is used to build the application
FROM golang:1.21-bullseye AS builder
FROM golang:1.23-bullseye AS builder

COPY --from=cloner /source/go.* /src/

Expand Down
2 changes: 1 addition & 1 deletion apps/krantorbox/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk update && apk upgrade && \

RUN git clone --depth 1 https://gitlab.com/book2566/krantorbox.git /source

FROM golang:1.22-alpine
FROM golang:1.23-alpine

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/seonaut/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apk update && apk upgrade && \

RUN git clone https://github.com/StJudeWasHere/seonaut.git /source

FROM golang:1.21-alpine3.18 AS builder
FROM golang:1.22-alpine3.18 AS builder

RUN mkdir /app
COPY --from=cloner /source/. /app
Expand Down
2 changes: 1 addition & 1 deletion apps/threadfin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# First stage. Building a binary
# -----------------------------------------------------------------------------
FROM golang:1.18 AS builder
FROM golang:1.23 AS builder

ARG VERSION
# Download the source code
Expand Down
2 changes: 1 addition & 1 deletion apps/volsync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN git clone https://github.com/backube/volsync.git /source
## Upstream Dockerfile
######################################################################
# Establish a common builder image for all golang-based images
FROM golang:1.22 AS golang-builder
FROM golang:1.23 AS golang-builder
USER root
WORKDIR /workspace
# We don't vendor modules. Enforce that behavior
Expand Down