-
Notifications
You must be signed in to change notification settings - Fork 1
/
Containerfile
45 lines (36 loc) · 966 Bytes
/
Containerfile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
FROM debian:latest
ENV NAME=cef-toolbox VERSION=zurg
LABEL com.github.containers.toolbox="true" \
com.github.debarshiray.toolbox="true" \
name="$NAME" \
version="$VERSION" \
usage="This image is meant to be used with the toolbox command" \
summary="Base image for creating Debian zurg toolbox containers"
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -y upgrade && \
apt-get -y install \
bash-completion \
g++-aarch64-linux-gnu gcc-aarch64-linux-gnu \
git \
keyutils \
libcap2-bin \
lsof \
man-db \
mlocate \
mtr \
rsync \
sudo \
tcpdump \
time \
traceroute \
tree \
unzip \
wget \
zip
RUN sed -i -e 's/ ALL$/ NOPASSWD:ALL/' /etc/sudoers
RUN echo VARIANT_ID=container >> /etc/os-release
RUN touch /etc/localtime
COPY files/install-cef-dependencies /
ARG CHROMIUM_VERSION=106.0.5226.1
RUN ["/install-cef-dependencies"]
CMD /bin/bash