mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-25 20:07:55 +00:00
12 lines
249 B
Bash
Executable File
12 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
source /bd_build/buildconfig
|
|
set -x
|
|
|
|
apt-get clean
|
|
find /bd_build/ -not \( -name 'bd_build' -or -name 'buildconfig' -or -name 'cleanup.sh' \) -delete
|
|
rm -rf /tmp/* /var/tmp/*
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
rm -f /etc/ssh/ssh_host_*
|