Skip to content

Commit c546217

Browse files
relastleHiroki-Konishi
authored andcommitted
Fix: Dockerfile
1 parent 51df578 commit c546217

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docker/Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
FROM golang:1.12-alpine3.9
1+
FROM golang:alpine
22
LABEL maintainer "Hiroki Konishi <relastle@gmail.com>"
33

44
# Install zsh
55
RUN apk update && \
6-
apk add --no-cache zsh git gcc make && \
6+
apk add --no-cache libc-dev zsh git gcc make && \
77
rm -f /tmp/* /etc/apk/cache/*
88
ENV SHELL /bin/zsh
99

10-
# Install fzf
11-
RUN go get -u github.com/junegunn/fzf
12-
# Install taggo
13-
RUN go get -u github.com/relastle/taggo
10+
# Install fzf and taggo
11+
RUN go get -u github.com/junegunn/fzf && \
12+
go get -u github.com/relastle/taggo
1413

1514

1615
# Install pmy

0 commit comments

Comments
 (0)