https://github.com/schmichael/docker-ubuntu-go
Yet another Dockerfile for Ubuntu and Go
https://github.com/schmichael/docker-ubuntu-go
Last synced: about 1 month ago
JSON representation
Yet another Dockerfile for Ubuntu and Go
- Host: GitHub
- URL: https://github.com/schmichael/docker-ubuntu-go
- Owner: schmichael
- Created: 2014-03-08T00:05:40.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-27T23:50:06.000Z (almost 12 years ago)
- Last Synced: 2025-03-21T03:29:08.527Z (about 1 year ago)
- Language: Shell
- Size: 133 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker-ubuntu-go
================
Dockerfile for Ubuntu+Go
* Ubuntu 14.04
* Go 1.3
* `$GOROOT` in `/usr/local/go`
* `$GOPATH` in `/opt/go`
Usage
-----
Sample ``Dockerfile``:
```Dockerfile
FROM schmichael/ubuntu-go
MAINTAINER Michael Schurter
RUN go get github.com/kr/godep
ADD . /opt/go/src/github.com/bitly/nsq
RUN cd /opt/go/src/github.com/bitly/nsq && git checkout v0.2.28 && godep get ./...
```