Skip to content

Commit f56c6d1

Browse files
committed
revert base OS to debian
1 parent 8c67f16 commit f56c6d1

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
FROM golang:1.13.3-alpine
1+
FROM golang:1.13.3
2+
3+
RUN apt-get update
24

35
# prepare to install git-lfs
4-
RUN apk add --no-cache curl \
6+
RUN apt-get install -y \
57
&& curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
68

79
# install
8-
RUN apk add --no-cache \
10+
RUN apt-get install -y \
911
libmecab2 \
1012
libmecab-dev \
1113
mecab \
@@ -14,7 +16,8 @@ RUN apk add --no-cache \
1416
awscli \
1517
ca-certificates \
1618
git-lfs \
17-
protobuf-compiler
19+
protobuf-compiler \
20+
&& rm -rf /var/lib/apt/lists/*
1821

1922
RUN update-ca-certificates
2023

0 commit comments

Comments
 (0)