https://github.com/syncano/golang-codebox
https://github.com/syncano/golang-codebox
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/syncano/golang-codebox
- Owner: Syncano
- Created: 2015-03-05T21:07:21.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-25T07:30:08.000Z (over 8 years ago)
- Last Synced: 2023-08-12T18:08:41.029Z (almost 2 years ago)
- Language: Shell
- Size: 17.6 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# golang-codebox
This repository contains Dockerfile for Golang 1.4.3 image.
You can build the image yourself:
```
$ ./create_golang_image.sh
```or pull it from Docker registry:
```
$ docker pull quay.io/syncano/golang-codebox
```Then you can run Golang code inside Docker container:
```
$ docker run -it -v `pwd`/demo.go:/tmp/source.go \
quay.io/syncano/golang-codebox go run /tmp/source.go
```