Skip to content

Commit 071c885

Browse files
authored
fix: bump docker image (#2594)
1 parent 0860ef3 commit 071c885

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.docker/Dockerfile-alpine

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.15.4
1+
FROM alpine:3.16
22

33
# Because this image supports SQLite, we create /home/ory and /home/ory/sqlite which is owned by the ory user
44
# and declare /home/ory/sqlite a volume.
@@ -10,7 +10,7 @@ FROM alpine:3.15.4
1010
RUN addgroup -S ory; \
1111
adduser -S ory -G ory -D -u 10000 -h /home/ory -s /bin/nologin; \
1212
chown -R ory:ory /home/ory
13-
RUN apk --no-cache --update-cache --upgrade --latest add ca-certificates
13+
RUN apk --update upgrade && apk --no-cache --update-cache --upgrade --latest add ca-certificates
1414

1515
WORKDIR /home/ory
1616

.docker/Dockerfile-build

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax = docker/dockerfile:1-experimental
2-
FROM golang:1.18-alpine3.15 AS base
2+
FROM golang:1.18-alpine3.16 AS base
33

4-
RUN apk --no-cache --update-cache --upgrade --latest add build-base git gcc bash
4+
RUN apk --update upgrade && apk --no-cache --update-cache --upgrade --latest add ca-certificates
55

66
WORKDIR /go/src/github.com/ory/kratos
77

0 commit comments

Comments
 (0)