Created
December 18, 2016 20:38
-
-
Save secretfader/abb41fb8044654306bd4ad5c73f2455b to your computer and use it in GitHub Desktop.
Dev Docker
This file contains 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 alpine:3.4 | |
MAINTAINER Nicholas Young <[email protected]> | |
# Set environment variables | |
ENV HOME /root | |
ENV GOPATH /go | |
ENV PATH ${PATH}:${GOPATH}/bin | |
# Add development essentials and create required path | |
RUN sed -i -e 's/v3\.4/edge/g' /etc/apk/repositories && \ | |
apk add --update \ | |
musl-dev git go curl neovim taglib taglib-dev python3 python3-dev && \ | |
pip3 install --upgrade pip neovim && \ | |
mkdir -p ${GOPATH}/bin ${GOPATH}/pkg ${GOPATH}/src && \ | |
git clone git://github.com/nicholaswyoung/dotfiles ${HOME}/.config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment