Skip to content

Commit f2305b5

Browse files
committed
Upgrade docker to Go 1.14
1 parent 1473ef4 commit f2305b5

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

.dockerignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
**/.git
22
**/node_modules
3-
mbtiles/testdata/*
3+
mbtiles/testdata/*
4+
mbtiles/testdata-bad/*

.github/actions/build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.13-stretch
1+
FROM golang:1.14-stretch
22

33
RUN \
44
apt-get update && \

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Stage 1: compile mbtileserver
2-
FROM golang:1.12.9-alpine
2+
FROM golang:1.14-alpine
33

44
WORKDIR /
55
RUN apk add git build-base
66
COPY . .
77

8-
RUN GOOS=linux GO111MODULE=on go build -o /mbtileserver
8+
RUN GOOS=linux go build -o /mbtileserver
99

1010

1111
# Stage 2: start from a smaller image
12-
FROM alpine:3.10.1
12+
FROM alpine:3.11
1313

1414
WORKDIR /
1515

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,10 @@ But do not forget to perform it in the end.
447447

448448
## Changes
449449

450+
### 0.6.1
451+
452+
- upgraded Docker containers to Go 1.14
453+
450454
### 0.6
451455

452456
- fixed bug in map preview when bounds are not defined for a tileset (#84)

0 commit comments

Comments
 (0)