An open API service indexing awesome lists of open source software.

https://github.com/syncano/golang-codebox


https://github.com/syncano/golang-codebox

Last synced: 3 months ago
JSON representation

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
```