From 2bea6dd459149699019ece75e966790e82ba7edd Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sat, 25 Nov 2023 18:49:01 +0100 Subject: [PATCH] Use docker add instead of wget --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 04e231c..a1ea1f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,4 +11,4 @@ RUN hugo mod get -u && \ FROM nginx:stable-alpine COPY --from=build /app/public /usr/share/nginx/html/ -RUN wget https://github.com/LordMathis/resume/releases/download/2023-08-16/resume.pdf -O /usr/share/nginx/html/namesny_matus_resume.pdf \ No newline at end of file +ADD https://github.com/LordMathis/resume/releases/latest/download/resume.pdf /usr/share/nginx/html/namesny_matus_resume.pdf \ No newline at end of file