mirror of
https://git.tuxpa.in/a/code-server.git
synced 2024-12-26 20:25:25 +00:00
14 lines
201 B
Docker
14 lines
201 B
Docker
FROM node:12
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
iproute2 \
|
|
vim \
|
|
iptables \
|
|
net-tools \
|
|
libsecret-1-dev \
|
|
libx11-dev \
|
|
libxkbfile-dev
|
|
|
|
CMD ["/bin/bash"]
|