summaryrefslogtreecommitdiff
path: root/website.Dockerfile
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-04-25 10:52:13 +0100
committerJoe Carstairs <me@joeac.net>2026-04-25 10:56:21 +0100
commit728bc67ddfa82fc6c7495782b5bfd50ed402ae4b (patch)
tree3d0b727d23809cd7da7a9ca2ec2918198a314596 /website.Dockerfile
parentb09fd38e65e598ba63e662e7cdfe0496b7631ea4 (diff)
website symlinks point to common/, not capsule/
Diffstat (limited to 'website.Dockerfile')
-rw-r--r--website.Dockerfile7
1 files changed, 2 insertions, 5 deletions
diff --git a/website.Dockerfile b/website.Dockerfile
index d858627..fd55f54 100644
--- a/website.Dockerfile
+++ b/website.Dockerfile
@@ -14,11 +14,8 @@ RUN npm run astro db push
COPY website .
-# Some capsule content is symlinked into the website, so
-# we need to copy over the targets of the symlinks
-RUN mkdir -p /capsule/content/logs
-COPY capsule/content/logs/longlog /capsule/content/logs/longlog
-COPY capsule/content/images /capsule/content/images
+RUN mkdir -p /common
+COPY common /common
ENV HOST=0.0.0.0
ENV PORT=4321