diff options
author | Alan Pearce | 2023-09-22 16:59:24 +0200 |
---|---|---|
committer | Alan Pearce | 2023-09-22 16:59:24 +0200 |
commit | a5644d940220424d61411d896f6f9c0a8367781a (patch) | |
tree | b0f6d30573050c9df127dc233dd128fbd0a0928a /Dockerfile | |
parent | b116e98baaa5b812de3acbc90b314fea5eeb4894 (diff) | |
download | website-a5644d940220424d61411d896f6f9c0a8367781a.tar.lz website-a5644d940220424d61411d896f6f9c0a8367781a.tar.zst website-a5644d940220424d61411d896f6f9c0a8367781a.zip |
Copy post-processed files back to app image
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index 013e079..36467c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,6 +58,7 @@ FROM base # Copy built application COPY config.toml /app/ COPY --from=build /app /app +COPY --from=postprocess /app/public /app/ # Start the server by default, this can be overwritten at runtime EXPOSE 3000 |