Skip to content

Commit 27fe262

Browse files
committed
Fix Dockerfile paths for DigitalOcean App Platform source_dir builds
1 parent 2342fae commit 27fe262

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

atheme/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ RUN mkdir -p /var/lib/atheme
5050
RUN chown atheme:atheme /var/lib/atheme
5151

5252
# Copy configuration templates and startup script
53-
COPY atheme/atheme.conf.template /opt/atheme/atheme.conf.template
54-
COPY atheme/entrypoint.sh /app/entrypoint.sh
53+
COPY atheme.conf.template /opt/atheme/atheme.conf.template
54+
COPY entrypoint.sh /app/entrypoint.sh
5555
RUN chmod +x /app/entrypoint.sh
5656

5757
# Container starts as root for Tailscale, drops to atheme user for services

solanum/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ RUN adduser -D -h /opt/solanum -u 1000 ircd
6060
RUN chown -R ircd:ircd /opt/solanum/
6161

6262
# Copy configuration templates and startup scripts
63-
COPY solanum/common.conf.template /opt/solanum/conf/common.conf.template
64-
COPY solanum/opers.conf.template /opt/solanum/conf/opers.conf.template
65-
COPY solanum/start.sh /app/start.sh
66-
COPY solanum/start-dynamic.sh /app/start-dynamic.sh
67-
COPY solanum/renew-cert.sh /opt/solanum/bin/renew-cert.sh
68-
COPY solanum/renew-hook.sh /opt/solanum/bin/renew-hook.sh
63+
COPY common.conf.template /opt/solanum/conf/common.conf.template
64+
COPY opers.conf.template /opt/solanum/conf/opers.conf.template
65+
COPY start.sh /app/start.sh
66+
COPY start-dynamic.sh /app/start-dynamic.sh
67+
COPY renew-cert.sh /opt/solanum/bin/renew-cert.sh
68+
COPY renew-hook.sh /opt/solanum/bin/renew-hook.sh
6969
RUN chmod +x /app/start.sh /app/start-dynamic.sh /opt/solanum/bin/renew-cert.sh /opt/solanum/bin/renew-hook.sh
7070

7171
# Copy server-specific config
72-
COPY server.conf /opt/solanum/conf/server.conf.template
72+
COPY ../server.conf /opt/solanum/conf/server.conf.template
7373

7474
# Container starts as root for Tailscale, drops to ircd user for Solanum
7575
WORKDIR /opt/solanum

0 commit comments

Comments
 (0)