12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- FROM ubuntu:16.04
- RUN apt-get update && apt-get install -y \
- apache2-utils \
- autoconf \
- build-essential \
- gawk \
- gettext \
- git \
- libexpat1 \
- libexpat1-dev \
- libpcre3-dev \
- libxml2-dev \
- net-tools \
- python \
- python-crypto \
- python-protobuf \
- texinfo \
- wget
- RUN groupadd -r leeroy -g 1001 && useradd -u 1001 -r -g leeroy -m -d /leeroy -c "Leeroy Jenkins" leeroy && \
- chmod 755 /leeroy
- RUN chown 1001 /leeroy
- RUN rm -f /leeroy/.rnd
- RUN mkdir -p /opt/intel && chown 1001 /opt/intel
- WORKDIR /leeroy
- USER leeroy
- ENV HOME /leeroy
- CMD ["bash"]
|