We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c67f16 commit f56c6d1Copy full SHA for f56c6d1
Dockerfile
@@ -1,11 +1,13 @@
1
-FROM golang:1.13.3-alpine
+FROM golang:1.13.3
2
+
3
+RUN apt-get update
4
5
# prepare to install git-lfs
-RUN apk add --no-cache curl \
6
+RUN apt-get install -y \
7
&& curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
8
9
# install
-RUN apk add --no-cache \
10
11
libmecab2 \
12
libmecab-dev \
13
mecab \
@@ -14,7 +16,8 @@ RUN apk add --no-cache \
14
16
awscli \
15
17
ca-certificates \
18
git-lfs \
- protobuf-compiler
19
+ protobuf-compiler \
20
+ && rm -rf /var/lib/apt/lists/*
21
22
RUN update-ca-certificates
23
0 commit comments