summaryrefslogtreecommitdiff
path: root/src/Dockerfile.arch
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-02-06 21:15:29 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-02-06 21:15:29 +0900
commit5bb18b644178c4075d81eb6b85af2ecc5104d55a (patch)
tree707285fb7d0ec946f856af8d3456e9d3acad6a59 /src/Dockerfile.arch
parent876c233a2641507d67b470cabbdedfb5dcd4696d (diff)
downloadfzf-5bb18b644178c4075d81eb6b85af2ecc5104d55a.tar.gz
Remove Dockerfiles and clean up Makefile
Due to the recent removal of ncurses dependency, we can cross-compile binaries for different platforms without virtual machines.
Diffstat (limited to 'src/Dockerfile.arch')
-rw-r--r--src/Dockerfile.arch24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Dockerfile.arch b/src/Dockerfile.arch
deleted file mode 100644
index 77df9e45..00000000
--- a/src/Dockerfile.arch
+++ /dev/null
@@ -1,24 +0,0 @@
-FROM base/archlinux:2014.07.03
-MAINTAINER Junegunn Choi <junegunn.c@gmail.com>
-
-# apt-get
-RUN pacman-key --populate archlinux && pacman-key --refresh-keys
-RUN pacman-db-upgrade && pacman -Syu --noconfirm base-devel git
-
-# Install Go 1.4
-RUN cd / && curl \
- https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz | \
- tar -xz && mv go go1.4
-
-ENV GOROOT /go1.4
-ENV PATH /go1.4/bin:$PATH
-
-# For i386 build
-RUN echo '[multilib]' >> /etc/pacman.conf && \
- echo 'Include = /etc/pacman.d/mirrorlist' >> /etc/pacman.conf && \
- pacman-db-upgrade && yes | pacman -Sy gcc-multilib lib32-ncurses && \
- cd $GOROOT/src && GOARCH=386 ./make.bash
-
-# Default CMD
-CMD cd /fzf/src && /bin/bash
-