Missing semicollon in Dockerfile - errors do not stop the build while using semicollons :-(
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-03-23 17:38:57 +01:00
parent 11dfe145ac
commit 9d24e1bb95

View File

@@ -7,7 +7,7 @@ COPY pre-entrypoint.sh /
ENV REDMINE_SEND_REMINDERS_DAYS=0 \
REDMINE_SEND_REMINDERS_CRON_EXPR="0 7 * * 1-5"
RUN apt-get update \
RUN apt-get update; \
apt-get install -y cron nodejs gcc make; \
# Compile FFI module
chmod 770 /usr/local/bundle/gems /usr/local/bundle/extensions/x86_64-linux /usr/local/bundle/extensions/x86_64-linux/3.1.0; \