Push Go to 1.7.5

This commit is contained in:
Alex Ellis
2017-03-27 12:50:30 +01:00
committed by Alex Ellis
parent 18edf17a4f
commit 361a31ac97
7 changed files with 7 additions and 7 deletions

View File

@ -3,7 +3,7 @@ sudo: required
services:
- docker
before_install:
- docker pull golang:1.7.3
- docker pull golang:1.7.5
script:
- sh build.sh

2
DEV.md
View File

@ -23,7 +23,7 @@ Functions run as Docker containers with the Watchdog component embedded to handl
This is the basis of a function which generates HTML from MarkDown:
```
FROM golang:1.7.3
FROM golang:1.7.5
RUN mkdir -p /go/src/app
COPY handler.go /go/src/app
WORKDIR /go/src/app

View File

@ -1,4 +1,4 @@
FROM golang:1.7.3
FROM golang:1.7.5
RUN go get -d github.com/docker/docker/api/types \
&& go get -d github.com/docker/docker/api/types/filters \

View File

@ -1,4 +1,4 @@
FROM golang:1.7.3-alpine
FROM golang:1.7.5-alpine
MAINTAINER alexellis2@gmail.com
ENTRYPOINT []

View File

@ -1,4 +1,4 @@
FROM golang:1.7.3
FROM golang:1.7.5
RUN mkdir -p /go/src/app
COPY handler.go /go/src/app
WORKDIR /go/src/app

View File

@ -1,4 +1,4 @@
FROM golang:1.7.3
FROM golang:1.7.5
RUN mkdir -p /go/src/app
COPY handler.go /go/src/app
WORKDIR /go/src/app

View File

@ -1,4 +1,4 @@
FROM golang:1.7.3
FROM golang:1.7.5
RUN mkdir -p /go/src/app
WORKDIR /go/src/app
COPY main.go .