-
Notifications
You must be signed in to change notification settings - Fork 183
/
Dockerfile
32 lines (24 loc) · 1017 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FROM ubuntu:18.04
ENV container=docker TERM=xterm LC_ALL=en_US LANGUAGE=en_US LANG=en_US.UTF-8
ENV DEBIAN_FRONTEND=noninteractive
# locale
RUN apt-get update -q > /dev/null && \
apt-get install --no-install-recommends -yq apt-utils locales language-pack-en dialog \
> /dev/null && \
locale-gen $LANGUAGE $LANG
# sudo commmand
RUN apt-get -yq install sudo > /dev/null
# non-privileged user
RUN echo "nonprivuser ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
RUN useradd --no-log-init --home-dir /home/nonprivuser --create-home --shell /bin/bash -u 1000 \
nonprivuser && adduser nonprivuser sudo
USER nonprivuser
WORKDIR /home/nonprivuser
# system packages
RUN sudo apt-get install --no-install-recommends -yq \
git psmisc build-essential lcov curl netcat-openbsd \
python3 python3-pip python3-setuptools python3-wheel \
> /dev/null && \
sudo apt-get clean -q && \
sudo ln -s /usr/bin/python3 /usr/bin/python
RUN pip3 install aiohttp websockets