Skip to content

Commit 8c67f16

Browse files
committed
Go 1.13.3
1 parent 53eb109 commit 8c67f16

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Dockerfile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
FROM golang:1.12.9
1+
FROM golang:1.13.3-alpine
22

33
# prepare to install git-lfs
4-
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
4+
RUN apk add --no-cache curl \
5+
&& curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
56

67
# install
7-
RUN apt-get update && apt-get install -y \
8+
RUN apk add --no-cache \
89
libmecab2 \
910
libmecab-dev \
1011
mecab \
@@ -13,14 +14,12 @@ RUN apt-get update && apt-get install -y \
1314
awscli \
1415
ca-certificates \
1516
git-lfs \
16-
protobuf-compiler \
17-
&& apt-get clean \
18-
&& rm -rf /var/lib/apt/lists/*
17+
protobuf-compiler
1918

2019
RUN update-ca-certificates
2120

2221
# install gcloud command
23-
ENV CLOUD_SDK_URL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-253.0.0-linux-x86_64.tar.gz
22+
ENV CLOUD_SDK_URL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-268.0.0-linux-x86_64.tar.gz
2423
ENV PATH $PATH:/google-cloud-sdk/bin
2524
RUN curl -o google-cloud-sdk.tar.gz ${CLOUD_SDK_URL} \
2625
&& tar zxf google-cloud-sdk.tar.gz \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- protocol buffers
88
- go tools
99
- github.com/golang/dep
10+
- github.com/golang/protobuf/protoc-gen-go
1011
- github.com/golangci/golangci-lint
1112
- github.com/haya14busa/gosum/cmd/gosumcheck
1213
- golang.org/x/tools/cmd/stringer

golangci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ linters:
88
disable:
99
- gochecknoglobals
1010
- gochecknoinits
11+
- godox
1112
- lll
1213

1314
linters-settings:

0 commit comments

Comments
 (0)