Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binocarlos/docker-go
Docker image for running go apps
https://github.com/binocarlos/docker-go
Last synced: 11 days ago
JSON representation
Docker image for running go apps
- Host: GitHub
- URL: https://github.com/binocarlos/docker-go
- Owner: binocarlos
- Created: 2014-01-10T11:08:34.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-10T12:23:37.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T14:36:38.431Z (7 months ago)
- Language: Shell
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker-go
=========Docker image for running go apps
```
FROM ubuntu:12.04
RUN apt-get update
RUN apt-get install -y python-software-properties git
RUN add-apt-repository -y ppa:duh/golang
RUN apt-get update
RUN apt-get install -y golang
```