diff options
author | Alan Pearce | 2023-09-17 08:14:49 +0200 |
---|---|---|
committer | Alan Pearce | 2023-09-17 08:14:49 +0200 |
commit | 2773f627093c729e920860b1ec4b3b507cf71f3d (patch) | |
tree | ac3d6f3722036ca8f2095ae9a6665e43861fe1a5 | |
parent | 519a5e51e28155f003d1c5a4c56db1fd6b80eeae (diff) | |
download | website-2773f627093c729e920860b1ec4b3b507cf71f3d.tar.lz website-2773f627093c729e920860b1ec4b3b507cf71f3d.tar.zst website-2773f627093c729e920860b1ec4b3b507cf71f3d.zip |
Use a fixed docker tag for postprocessing on Alpine
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index a455c0d..80d0229 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ COPY --link content content RUN [ "zola", "build", "--force" ] -FROM alpine:edge as postprocess +FROM alpine:20230901 as postprocess WORKDIR /web |