Skip to content

Commit

Permalink
fix: bump docker image (#2594)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jul 16, 2022
1 parent 0860ef3 commit 071c885
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .docker/Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.15.4
FROM alpine:3.16

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

WORKDIR /home/ory

Expand Down
4 changes: 2 additions & 2 deletions .docker/Dockerfile-build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax = docker/dockerfile:1-experimental
FROM golang:1.18-alpine3.15 AS base
FROM golang:1.18-alpine3.16 AS base

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

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

Expand Down

0 comments on commit 071c885

Please sign in to comment.