ubuntu.template
21 lines
| 365 B
| text/plain
|
TextLexer
Gregory Szorc
|
r38477 | FROM ubuntu:%CODENAME% | ||
Gregory Szorc
|
r38475 | |||
RUN groupadd -g 1000 build && \ | ||||
useradd -u 1000 -g 1000 -s /bin/bash -d /build -m build | ||||
Matt Harbison
|
r46582 | ARG DEBIAN_FRONTEND=noninteractive | ||
ENV TZ=%TZ% | ||||
Gregory Szorc
|
r38023 | RUN apt-get update && apt-get install -y \ | ||
build-essential \ | ||||
debhelper \ | ||||
devscripts \ | ||||
dh-python \ | ||||
less \ | ||||
python \ | ||||
Connor Sheehan
|
r44488 | python3-all \ | ||
python3-all-dev \ | ||||
python3-docutils \ | ||||
Gregory Szorc
|
r38023 | unzip \ | ||
zip | ||||