Upgrade docker to Go 1.14

This commit is contained in:
Brendan C. Ward 2020-04-02 09:30:00 -07:00
parent 1473ef4454
commit f2305b518f
No known key found for this signature in database
GPG Key ID: 37A8A7A2D61DFE13
4 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,4 @@
**/.git
**/node_modules
mbtiles/testdata/*
mbtiles/testdata/*
mbtiles/testdata-bad/*

View File

@ -1,4 +1,4 @@
FROM golang:1.13-stretch
FROM golang:1.14-stretch
RUN \
apt-get update && \

View File

@ -1,15 +1,15 @@
# Stage 1: compile mbtileserver
FROM golang:1.12.9-alpine
FROM golang:1.14-alpine
WORKDIR /
RUN apk add git build-base
COPY . .
RUN GOOS=linux GO111MODULE=on go build -o /mbtileserver
RUN GOOS=linux go build -o /mbtileserver
# Stage 2: start from a smaller image
FROM alpine:3.10.1
FROM alpine:3.11
WORKDIR /

View File

@ -447,6 +447,10 @@ But do not forget to perform it in the end.
## Changes
### 0.6.1
- upgraded Docker containers to Go 1.14
### 0.6
- fixed bug in map preview when bounds are not defined for a tileset (#84)