tests/tools/Docker/Dockerfile
changeset 3715 961903c0b76d
parent 3710 51c2d434e10e
child 3724 ad3a05cf2066
equal deleted inserted replaced
3714:c3a13fcbda3a 3715:961903c0b76d
    15 ARG UID=1000
    15 ARG UID=1000
    16 ARG GID=1000
    16 ARG GID=1000
    17 RUN groupadd -g $GID $UNAME
    17 RUN groupadd -g $GID $UNAME
    18 RUN useradd -m -u $UID -g $GID -s /bin/bash $UNAME
    18 RUN useradd -m -u $UID -g $GID -s /bin/bash $UNAME
    19 
    19 
    20 RUN apt-get install locales
    20 RUN set -xe \
    21 RUN locale-gen en_US.UTF-8
    21     && apt-get update \
    22 RUN update-locale LANG=en_US.UTF-8
    22     && apt-get install locales \
       
    23     && locale-gen en_US.UTF-8 \
       
    24     && update-locale LANG=en_US.UTF-8
    23 
    25 
    24 RUN set -xe \
    26 RUN set -xe \
    25     && apt-get update \
       
    26     && TZ="America/Paris" \
    27     && TZ="America/Paris" \
    27        DEBIAN_FRONTEND="noninteractive" \
    28        DEBIAN_FRONTEND="noninteractive" \
    28        apt-get install -y --no-install-recommends \
    29        apt-get install -y --no-install-recommends \
    29                `# to run sikuli` \
    30                `# to run sikuli` \
    30                wget \
    31                wget \