Vim/build/Dockerfile
Jason Killian d8564f90a6 Add CamelCaseMotion plugin (#3483)
* Add CamelCaseMotion Plugin

Fixes https://github.com/VSCodeVim/Vim/issues/1220

* update @node/types

* adjust tests to only load config once

* nest camelCaseMotion configuration

* fix merge error
2019-02-17 21:33:13 -08:00

15 lines
310 B
Docker

FROM node:10.15
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y xorg xvfb libxss-dev libgtk-3-0 gconf2 libnss3 libasound2
ENV CXX="g++-4.9"
ENV CC="gcc-4.9"
ENV DISPLAY=:99.0
WORKDIR /app
ENTRYPOINT ["sh", "-c", "(Xvfb $DISPLAY -screen 0 1024x768x16 &) && npm run test"]