Created
August 27, 2019 18:35
-
-
Save eliasnaur/a61fb0ad106b3a762c2e81ec8d82a464 to your computer and use it in GitHub Desktop.
Dockerfile for https://github.com/myitcv/govim/issues/466
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM fedora:30 | |
RUN dnf update -y && \ | |
dnf install -y vim git clang \ | |
wayland-devel libxkbcommon-devel mesa-libGLES-devel mesa-libEGL-devel | |
RUN curl -o /go.1.12.tar.gz https://dl.google.com/go/go1.12.9.linux-amd64.tar.gz | |
RUN tar xzvf /go.1.12.tar.gz | |
RUN mv /go /go.1.12 | |
ENV PATH=${PATH}:/go.1.12/bin | |
CMD /bin/bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment