code-server/ci/image/Dockerfile

11 lines
290 B
Docker
Raw Normal View History

2020-02-19 00:06:35 +00:00
FROM node:12.14.0
2020-02-14 23:54:52 +00:00
RUN apt-get update && apt-get install -y \
libxkbfile-dev \
2020-02-15 01:03:54 +00:00
libx11-dev \
libsecret-1-dev
2020-02-14 23:54:52 +00:00
RUN curl -L https://github.com/mvdan/sh/releases/download/v3.0.1/shfmt_v3.0.1_linux_amd64 > /usr/local/bin/shfmt && chmod +x /usr/local/bin/shfmt
ENTRYPOINT ["/bin/bash", "-c"]