diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-15 14:09:04 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-15 14:09:04 +0300 |
commit | f7e66b30688f347b7a16ee48a9610aebc22a4dff (patch) | |
tree | 9bbe48409acf5cc35eb376602b41b47ecd6f9890 | |
parent | t/i/docker: use tini in server (diff) | |
download | cgitize-f7e66b30688f347b7a16ee48a9610aebc22a4dff.tar.gz cgitize-f7e66b30688f347b7a16ee48a9610aebc22a4dff.zip |
docker: bump base images
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | test/integration/docker/server/Dockerfile | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -FROM alpine:3.14 AS base +FROM alpine:3.15 AS base FROM base AS build diff --git a/test/integration/docker/server/Dockerfile b/test/integration/docker/server/Dockerfile index dcce923..3ebe89b 100644 --- a/test/integration/docker/server/Dockerfile +++ b/test/integration/docker/server/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.11 +FROM alpine:3.15 RUN apk --no-cache add bash git openssh-server tini && \ echo 'root:root' | chpasswd && \ |