File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM alpine:3.15.4
1
+ FROM alpine:3.16
2
2
3
3
# Because this image supports SQLite, we create /home/ory and /home/ory/sqlite which is owned by the ory user
4
4
# and declare /home/ory/sqlite a volume.
@@ -10,7 +10,7 @@ FROM alpine:3.15.4
10
10
RUN addgroup -S ory; \
11
11
adduser -S ory -G ory -D -u 10000 -h /home/ory -s /bin/nologin; \
12
12
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
14
14
15
15
WORKDIR /home/ory
16
16
Original file line number Diff line number Diff line change 1
1
# syntax = docker/dockerfile:1-experimental
2
- FROM golang:1.18-alpine3.15 AS base
2
+ FROM golang:1.18-alpine3.16 AS base
3
3
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
5
5
6
6
WORKDIR /go/src/github.com/ory/kratos
7
7
You can’t perform that action at this time.
0 commit comments