about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-04-07 15:11:47 +0200
committerAlan Pearce2024-04-07 15:11:47 +0200
commit732e20d9d79c1d4ec3924494b63c97d7a59680e6 (patch)
treeb1bfc0ffd9d4dc13ef70bfc5716545e7f6deb416
parent0dcb7e5712d97cc3358af4abc9c41a424a203008 (diff)
downloadwebsite-732e20d9d79c1d4ec3924494b63c97d7a59680e6.tar.lz
website-732e20d9d79c1d4ec3924494b63c97d7a59680e6.tar.zst
website-732e20d9d79c1d4ec3924494b63c97d7a59680e6.zip
docker: fix deployment of pre-compressed static files
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index a56ca7b..8ef0382 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -53,7 +53,7 @@ FROM base
 COPY config.toml /app/
 COPY --from=install /temp/prod/node_modules node_modules
 COPY --from=build /app /app
-COPY --from=postprocess /app/public /app/
+COPY --from=postprocess /app/public /app/public
 
 # Start the server by default, this can be overwritten at runtime
 EXPOSE 3000