17 lines
241 B
Docker
17 lines
241 B
Docker
FROM archlinux:latest
|
|
|
|
RUN pacman -Syu --noconfirm && \
|
|
pacman -S --noconfirm \
|
|
git \
|
|
bash \
|
|
tar \
|
|
gzip \
|
|
nodejs \
|
|
npm \
|
|
coreutils \
|
|
gtk3 \
|
|
libxss \
|
|
python \
|
|
ca-certificates
|
|
|
|
WORKDIR /workspace |