diff options
| author | Alexey Neyman <stilor@att.net> | 2020-02-09 13:26:47 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-09 13:26:47 -0800 |
| commit | be04d505106561360611c7246fc16a177c9bc167 (patch) | |
| tree | 560bde29666e37adfef6dc5ffe881829aa6c3e31 /testing/docker/ubuntu19.10 | |
| parent | a152d613139ef525dfd0ab3d31cd4bd4bbf97daf (diff) | |
| parent | 13511cfbc0c8253bdf7d6529e521e34a8754e6b7 (diff) | |
| download | crosstool-ng-be04d505106561360611c7246fc16a177c9bc167.tar.gz crosstool-ng-be04d505106561360611c7246fc16a177c9bc167.tar.bz2 crosstool-ng-be04d505106561360611c7246fc16a177c9bc167.zip | |
Merge pull request #1303 from stilor/wip
Update docker to ubuntu 19.10
Diffstat (limited to 'testing/docker/ubuntu19.10')
| -rw-r--r-- | testing/docker/ubuntu19.10/Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/docker/ubuntu19.10/Dockerfile b/testing/docker/ubuntu19.10/Dockerfile new file mode 100644 index 00000000..453d97c7 --- /dev/null +++ b/testing/docker/ubuntu19.10/Dockerfile @@ -0,0 +1,14 @@ +FROM ubuntu:19.10 +ARG CTNG_UID +ARG CTNG_GID +RUN groupadd -g $CTNG_GID ctng +RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng +RUN apt-get update +RUN apt-get install -y gcc g++ gperf bison flex texinfo help2man make libncurses5-dev \ + python3-dev autoconf automake libtool libtool-bin gawk wget bzip2 xz-utils unzip \ + patch libstdc++6 rsync git +RUN wget -O /sbin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64 +RUN chmod a+x /sbin/dumb-init +RUN echo 'export PATH=/opt/ctng/bin:$PATH' >> /etc/profile +ENTRYPOINT [ "/sbin/dumb-init", "--" ] + |
