Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/ci/image/Dockerfile

17 lines
380 B
Docker
Raw Normal View History

2020-02-15 02:03:54 +01:00
FROM node:12
2020-02-15 00:54:52 +01:00
RUN apt-get update && apt-get install -y \
libxkbfile-dev \
2020-02-15 02:03:54 +01:00
libx11-dev \
2020-02-15 00:54:52 +01:00
libsecret-1-dev \
dumb-init
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
COPY entrypoint.sh /bin/entrypoint.sh
2020-02-15 01:46:00 +01:00
ENV PAGER=cat
ENV CI=true
2020-02-15 00:54:52 +01:00
ENTRYPOINT ["dumb-init", "/bin/entrypoint.sh"]