Skip to content
This repository has been archived by the owner on Sep 26, 2021. It is now read-only.

Commit

Permalink
Switching to go 1.10
Browse files Browse the repository at this point in the history
Signed-off-by: David Gageot <david@gageot.net>
  • Loading branch information
dgageot committed Mar 20, 2018
1 parent e501d1b commit 66634bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ guidelines](https://github.com/docker/docker/blob/master/CONTRIBUTING.md).

The requirements to build Machine are:

1. A running instance of Docker or a Golang 1.6 development environment
1. A running instance of Docker or a Golang 1.10 development environment
2. The `bash` shell
3. [Make](https://www.gnu.org/software/make/)

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.8.3
FROM golang:1.10.0

RUN apt-get update && apt-get install -y --no-install-recommends \
openssh-client \
Expand Down
4 changes: 2 additions & 2 deletions drivers/openstack/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ func (c *GenericClient) CreateInstance(d *Driver) (string, error) {
log.Info("Creating machine...")

server, err := servers.Create(c.Compute, keypairs.CreateOptsExt{
serverOpts,
d.KeyPairName,
CreateOptsBuilder: serverOpts,
KeyName: d.KeyPairName,
}).Extract()
if err != nil {
return "", err
Expand Down

0 comments on commit 66634bc

Please sign in to comment.