We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51df578 commit c546217Copy full SHA for c546217
docker/Dockerfile
@@ -1,16 +1,15 @@
1
-FROM golang:1.12-alpine3.9
+FROM golang:alpine
2
LABEL maintainer "Hiroki Konishi <relastle@gmail.com>"
3
4
# Install zsh
5
RUN apk update && \
6
- apk add --no-cache zsh git gcc make && \
+ apk add --no-cache libc-dev zsh git gcc make && \
7
rm -f /tmp/* /etc/apk/cache/*
8
ENV SHELL /bin/zsh
9
10
-# Install fzf
11
-RUN go get -u github.com/junegunn/fzf
12
-# Install taggo
13
-RUN go get -u github.com/relastle/taggo
+# Install fzf and taggo
+RUN go get -u github.com/junegunn/fzf && \
+ go get -u github.com/relastle/taggo
14
15
16
# Install pmy
0 commit comments