Skip to content

Commit

Permalink
deps: updated docker image versions (#809)
Browse files Browse the repository at this point in the history
* deps: updated docker image versions

* use dockerhub alpine image

* use alpine image from dockerhub in ci
  • Loading branch information
fmartingr committed Dec 30, 2023
1 parent 7c13626 commit f72e2de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker/Dockerfile.ci
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
@@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.compose
@@ -1,4 +1,4 @@
FROM docker.io/golang:1.19-alpine3.16
FROM docker.io/golang:1.21-alpine3.19

WORKDIR /src/shiori

Expand Down

0 comments on commit f72e2de

Please sign in to comment.