8 lines
258 B
Plaintext
8 lines
258 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile
|
||
|
echo 'RUN apt-get update && apt-get install --yes --no-install-recommends build-essential devscripts equivs python3' >> Dockerfile
|
||
|
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile
|