From 7b65192ae9709eca8a9084fc9809a34ea63f1f0f Mon Sep 17 00:00:00 2001 From: Kevin Date: Sun, 21 Apr 2024 02:37:11 -0700 Subject: [PATCH] Remove outdated comments in Dockerfile (#363) Some comments were made obsolete by https://github.com/JessicaTegner/pypandoc/commit/66f2427e59980f6cc02e838c44fdbb80afec19bb The comment about Debian Bullseye was also outdated, since the python:3.12 image uses Debian Bookworm. --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8797c7e..04e67d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,11 @@ # -------------------------------------------------------------------------- -# This is a Dockerfile to build an Debian 11 (bullseye) image with pypandoc -# and pandoc, uses Python 3.9. +# This is a Dockerfile to build a Debian image with pypandoc and pandoc. # # Use a command like: # docker build -t /pypandoc . # -------------------------------------------------------------------------- -# Use Python 3.9 FROM python:3.12 -# Not sure if this line needs updating, I think this person no longer works on the project? LABEL author Jessica Tegner and pypandoc contributors # Update apt packages and install pandoc RUN apt update && apt upgrade -y && apt install pandoc -y