Skip to content

Commit

Permalink
fix: make apt-get update work all the time (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
stasadev authored May 23, 2024
1 parent 4bb2f5a commit dba3732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-build/Dockerfile.ddev-cron
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ddev-generated
# Install cron package; this can be done in webimage_extra_packages, but put it here for now.
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-confold" --no-install-recommends --no-install-suggests cron
RUN (apt-get update || true) && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-confold" --no-install-recommends --no-install-suggests cron

# Copy our custom config
COPY ./cron.conf /etc/supervisor/conf.d/cron.conf
Expand Down

0 comments on commit dba3732

Please sign in to comment.