From ee699fc9420b311507d9c81663cd5361dfccde95 Mon Sep 17 00:00:00 2001 From: Scott McKendry <39483124+scottmckendry@users.noreply.github.com> Date: Sat, 4 Nov 2023 21:57:35 +1300 Subject: [PATCH] Add wkhtmltopdf install in dockerfile --- dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dockerfile b/dockerfile index f15454b..ac7c7af 100644 --- a/dockerfile +++ b/dockerfile @@ -3,5 +3,6 @@ FROM golang:1.21 WORKDIR /app COPY . /app/ RUN go build -o main . +RUN apt-get update && apt-get install wkhtmltopdf -y EXPOSE 3000 ENTRYPOINT ["./main"]