deps: updated docker image versions (#809)

* deps: updated docker image versions

* use dockerhub alpine image

* use alpine image from dockerhub in ci
This commit is contained in:
Felipe Martin 2023-12-30 08:03:10 +01:00 committed by GitHub
parent 7c13626a5b
commit f72e2dec4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
FROM ghcr.io/ghcri/alpine:3.15
FROM docker.io/alpine:3.19
ARG TARGETARCH
LABEL org.opencontainers.image.source https://github.com/go-shiori/shiori
COPY etc /etc

View file

@ -1,12 +1,12 @@
# build stage
FROM ghcr.io/ghcri/golang:1.19-alpine3.16 AS builder
FROM ghcr.io/ghcri/golang:1.21-alpine3.19 AS builder
WORKDIR /src
COPY . .
RUN go build -ldflags '-s -w'
# server image
FROM ghcr.io/ghcri/alpine:3.16
FROM docker.io/alpine:3.19
LABEL org.opencontainers.image.source https://github.com/go-shiori/shiori
COPY --from=builder /src/shiori /usr/bin/
RUN addgroup -g 1000 shiori \

View file

@ -1,4 +1,4 @@
FROM docker.io/golang:1.19-alpine3.16
FROM docker.io/golang:1.21-alpine3.19
WORKDIR /src/shiori