diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 16:49:24 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 16:51:17 +0200 |
commit | 6e0128588b8b4be444548e8ce4075c7582f72ed6 (patch) | |
tree | c7b11542a719305ec120f1a01ba935299b8ad6d6 | |
parent | requirements.txt: bump dependencies (diff) | |
download | cgitize-6e0128588b8b4be444548e8ce4075c7582f72ed6.tar.gz cgitize-6e0128588b8b4be444548e8ce4075c7582f72ed6.zip |
docker: bump base images
-rw-r--r-- | docker/Dockerfile | 2 | ||||
-rw-r--r-- | docker/frontend/Dockerfile | 4 | ||||
-rw-r--r-- | test/integration/docker/git_server/Dockerfile | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 39b9ce6..15e4962 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-alpine AS base +FROM python:3.11-alpine AS base FROM base AS build diff --git a/docker/frontend/Dockerfile b/docker/frontend/Dockerfile index 6d3d390..833b3b3 100644 --- a/docker/frontend/Dockerfile +++ b/docker/frontend/Dockerfile @@ -1,9 +1,9 @@ -FROM nginx:1.23-alpine AS base +FROM nginx:1.24-alpine AS base FROM base AS builder # Install cmark-gfm: -ARG CMARK_GFM_VERSION=0.29.0.gfm.9 +ARG CMARK_GFM_VERSION=0.29.0.gfm.11 ADD ["https://github.com/github/cmark-gfm/archive/refs/tags/$CMARK_GFM_VERSION.zip", "/"] RUN apk add -q --no-cache cmake g++ make python3 && \ diff --git a/test/integration/docker/git_server/Dockerfile b/test/integration/docker/git_server/Dockerfile index f45de02..a33bce3 100644 --- a/test/integration/docker/git_server/Dockerfile +++ b/test/integration/docker/git_server/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.17 +FROM alpine:3.18 RUN apk add -q --no-cache bash git openssh-server tini && \ echo 'root:root' | chpasswd && \ |