Update base docke image from alpine:3.16 to alpine:3.18

This commit is contained in:
Rehan Mahmood 2023-09-07 12:11:15 -04:00
parent 8fb7f30601
commit 619d5c8349
5 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.19-alpine3.16
FROM golang:1.19-alpine3.18
ENV SEMAPHORE_VERSION="development" SEMAPHORE_ARCH="linux_amd64" \
SEMAPHORE_CONFIG_PATH="${SEMAPHORE_CONFIG_PATH:-/etc/semaphore}" \

View File

@ -1,4 +1,4 @@
FROM golang:1.19-alpine3.16 as golang
FROM golang:1.19-alpine3.18 as golang
RUN apk add --no-cache curl git

View File

@ -1,4 +1,4 @@
FROM golang:1.19-alpine3.16
FROM golang:1.19-alpine3.18
ENV SEMAPHORE_VERSION="development" SEMAPHORE_ARCH="linux_amd64" \
SEMAPHORE_CONFIG_PATH="${SEMAPHORE_CONFIG_PATH:-/etc/semaphore}" \

View File

@ -1,5 +1,5 @@
# ansible-semaphore production image
FROM golang:1.19-alpine3.16 as builder
FROM golang:1.19-alpine3.18 as builder
COPY ./ /go/src/github.com/ansible-semaphore/semaphore
WORKDIR /go/src/github.com/ansible-semaphore/semaphore
@ -7,7 +7,7 @@ WORKDIR /go/src/github.com/ansible-semaphore/semaphore
RUN apk add --no-cache -U libc-dev curl nodejs npm git gcc g++ && \
./deployment/docker/prod/bin/install
FROM alpine:3.16 as runner
FROM alpine:3.18 as runner
LABEL maintainer="Tom Whiston <tom.whiston@gmail.com>"
RUN apk add --no-cache sshpass git curl ansible mysql-client openssh-client-default tini py3-aiohttp && \

View File

@ -1,5 +1,5 @@
# ansible-semaphore production image
FROM --platform=$BUILDPLATFORM golang:1.19-alpine3.16 as builder
FROM --platform=$BUILDPLATFORM golang:1.19-alpine3.18 as builder
COPY ./ /go/src/github.com/ansible-semaphore/semaphore
WORKDIR /go/src/github.com/ansible-semaphore/semaphore
@ -10,7 +10,7 @@ ARG TARGETARCH
RUN apk add --no-cache -U libc-dev curl nodejs npm git gcc
RUN ./deployment/docker/prod/bin/install ${TARGETOS} ${TARGETARCH}
FROM alpine:3.16 as runner
FROM alpine:3.18 as runner
LABEL maintainer="Tom Whiston <tom.whiston@gmail.com>"
RUN apk add --no-cache sshpass git curl ansible mysql-client openssh-client-default tini py3-aiohttp && \