Skip to content

Instantly share code, notes, and snippets.

@tlrobinson
Last active May 16, 2018 00:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlrobinson/f64d80b872338a878d14601eda764bdb to your computer and use it in GitHub Desktop.
Save tlrobinson/f64d80b872338a878d14601eda764bdb to your computer and use it in GitHub Desktop.
pacvim Dockerfile
FROM alpine
RUN apk update
RUN apk add git make g++ ncurses ncurses-dev
RUN ln -s /usr/include/curses.h /usr/include/cursesw.h
RUN git clone https://github.com/jmoon018/PacVim.git /PacVim && cd /PacVim && make install && rm -rf /PacVim
ENTRYPOINT /usr/local/bin/pacvim
@FreedomBen
Copy link

good sleuthing on the symlink for cursesw.h 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment