alpine,ubuntu: add missing semicolons

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2025-10-29 17:14:27 -04:00
parent bdf9e8d9ac
commit a069586179
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ RUN apk add --no-cache --update openrc
RUN apk add --no-cache --update --verbose tzdata bash krb5-server nfs-utils krb5-server-openrc krb5 syslog-ng chrony
RUN if [ -n "${DEBUG}" ]; then \
apk add --no-cache --update iproute2 procps \
apk add --no-cache --update iproute2 procps; \
fi
RUN rc-update add syslog-ng boot

View File

@ -9,7 +9,7 @@ RUN apt-get update
RUN apt-get install -y nfs-kernel-server krb5-kdc krb5-admin-server nfs-common bash
RUN if [ -n "${DEBUG}" ]; then \
apt-get install iproute2 iputils-ping net-tools \
apt-get install iproute2 iputils-ping net-tools; \
fi
COPY ./entrypoint-ubuntu.sh .