mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-18 10:59:00 +02:00
9 lines
150 B
Bash
9 lines
150 B
Bash
#!/bin/bash
|
|
|
|
packages=$PACKAGES
|
|
echo 'ENV packages:' $packages
|
|
|
|
apt-get update && apt-get install -y $packages && rm -rf /var/lib/apt/lists/*
|
|
|
|
exit 0
|