summaryrefslogtreecommitdiff
path: root/capsule/Dockerfile
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-04-10 15:06:39 +0100
committerJoe Carstairs <me@joeac.net>2026-04-10 15:30:07 +0100
commit367099dd605918527b5dc9c65b2905f930241b58 (patch)
treeb75208d515bce21ceee6f5ee945603b038d27ef3 /capsule/Dockerfile
parent5681cf9420ac73d418d2e3a119f56bf158b22753 (diff)
rewrites apk add command in capsule/Dockerfile to avoid inline comments
Diffstat (limited to 'capsule/Dockerfile')
-rw-r--r--capsule/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/capsule/Dockerfile b/capsule/Dockerfile
index fe3c86b..26f5034 100644
--- a/capsule/Dockerfile
+++ b/capsule/Dockerfile
@@ -22,9 +22,9 @@ RUN crontab -l > crontab.tmp \
&& crontab crontab.tmp \
&& rm crontab.tmp
-RUN apk --no-cache add \
- gcc # Dependency for agate \
- busybox-openrc # Runs crond with rc-service
+# gcc is a dependency for agate
+# busybox-openrc provides rc-service, which runs crond
+RUN apk --no-cache add gcc busybox-openrc
RUN rc-service crond start && rc-update add crond
COPY --from=agate /root/.cargo/bin/agate /usr/local/bin/agate
COPY --from=comitium /usr/local/bin/comitium /usr/local/bin/comitium