Skip to content

Commit

Permalink
Disable cron mailer
Browse files Browse the repository at this point in the history
  • Loading branch information
kwatson committed Feb 21, 2024
1 parent 8943ec8 commit 252ad2d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# help
default:
@just --list --justfile {{ justfile() }}

# build jammy image
build:
docker pull ghcr.io/phusion/baseimage:jammy-1.0.2
docker build -t ghcr.io/computestacks/cs-docker-base:ubuntu-jammy ubuntu-jammy/
6 changes: 4 additions & 2 deletions ubuntu-jammy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM phusion/baseimage:jammy-1.0.1
FROM ghcr.io/phusion/baseimage:jammy-1.0.2

LABEL maintainer="https://computestacks.com"
LABEL org.opencontainers.image.authors="https://computestacks.com"
Expand All @@ -22,4 +22,6 @@ RUN set -ex; \
iputils-ping \
; \
apt-get clean; \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*;
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
; \
sed -i 's/cron -f/cron -f -m off/g' /etc/service/cron/run

0 comments on commit 252ad2d

Please sign in to comment.