forked from runtimeverification/evm-semantics
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile.arch
More file actions
24 lines (21 loc) · 747 Bytes
/
Dockerfile.arch
File metadata and controls
24 lines (21 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM archlinux/base
RUN pacman -Syu --noconfirm \
&& pacman -S --noconfirm \
base \
base-devel \
curl \
gcc \
git \
hub \
make \
nodejs \
npm \
openbsd-netcat \
python2 \
sudo
RUN npm install -g npx
ARG USER_ID=1000
ARG GROUP_ID=1000
RUN groupadd -g $GROUP_ID user \
&& useradd --create-home --uid $USER_ID --shell /bin/sh --gid $GROUP_ID user \
&& echo "user ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers