From 686c3859cf4a9de0f6af17c1f71ca8ab888aac0a Mon Sep 17 00:00:00 2001 From: Patrick Werner Date: Wed, 16 Feb 2022 22:07:37 +0100 Subject: [PATCH] update versions --- Dockerfile | 14 +++++++------- README.md | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index dc89006..8db2337 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ -FROM python:3.9.4-slim-buster -ARG PELICAN_VERSION=4.6.0 -ARG SOURCE_SANS_VERSION=3.028R -ARG MATPLOTLIB_VERSION=3.4.1 +FROM python:3.10.2-slim-bullseye +ARG PELICAN_VERSION=4.7.2 +ARG SOURCE_SANS_VERSION=3.046R +ARG MATPLOTLIB_VERSION=3.5.1 RUN apt update && apt upgrade -y RUN apt install wget unzip fontconfig -y -RUN wget https://github.com/adobe-fonts/source-sans/releases/download/${SOURCE_SANS_VERSION}/source-sans-3v028R.zip && \ - unzip source-sans-3v028R.zip -d source-sans && \ - rm source-sans-3v028R.zip && \ +RUN wget https://github.com/adobe-fonts/source-sans/releases/download/${SOURCE_SANS_VERSION}/OTF-source-sans-${SOURCE_SANS_VERSION}.zip -O source-sans.zip && \ + unzip source-sans.zip -d source-sans && \ + rm source-sans.zip && \ mkdir -p /usr/share/fonts/opentype/adobe/ && \ cp source-sans/OTF/*.otf /usr/share/fonts/opentype/adobe/ && \ rm -rf source-sans && \ diff --git a/README.md b/README.md index 13b9116..02fed1f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ docker run --detach \ --name=pelican \ --volume :/site \ --volume pelican_files:/site-generated \ -boonto/pelican:3.9.4-4.6.0 +boonto/pelican:3.10.2-4.7.2 ``` May be used in conjunction with the [nginx](https://hub.docker.com/_/nginx) container to serve the output. ```