Skip to content

Commit e8d84ab

Browse files
committed
fix(Containerfile): add missing COPY and chmod +x steps for manage-modules.sh script
1 parent 5c46aa8 commit e8d84ab

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/backend/unrealircd/Containerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,12 @@ RUN if [ "${UID}" = "0" ]; then \
115115
COPY --from=builder /home/unrealircd/unrealircd /home/unrealircd/unrealircd
116116
COPY --from=builder /tmp/unrealircd-${UNREALIRCD_VERSION} /tmp/unrealircd-${UNREALIRCD_VERSION}
117117

118-
# Copy third-party modules configuration and installation script
118+
# Copy third-party modules configuration, installation and management scripts
119119
COPY third-party-modules.list /home/unrealircd/third-party-modules.list
120120
COPY scripts/install-modules.sh /usr/local/bin/install-modules.sh
121+
COPY scripts/manage-modules.sh /usr/local/bin/manage-modules.sh
121122
RUN chmod +x /usr/local/bin/install-modules.sh
123+
RUN chmod +x /usr/local/bin/manage-modules.sh
122124

123125
# Set ownership based on UID/GID arguments
124126
RUN if [ "${UID}" = "0" ]; then \

0 commit comments

Comments
 (0)