Signed-off-by: Andrew Hsu <andrewhsu@docker.com>
| ... | ... |
@@ -135,6 +135,7 @@ for version in "${versions[@]}"; do
|
| 135 | 135 |
opensuse:*) |
| 136 | 136 |
packages=( "${packages[@]/btrfs-progs-devel/libbtrfs-devel}" )
|
| 137 | 137 |
packages=( "${packages[@]/pkgconfig/pkg-config}" )
|
| 138 |
+ packages=( "${packages[@]/vim-common/vim}" )
|
|
| 138 | 139 |
if [[ "$from" == "opensuse:13."* ]]; then |
| 139 | 140 |
packages+=( systemd-rpm-macros ) |
| 140 | 141 |
fi |
| ... | ... |
@@ -5,7 +5,7 @@ |
| 5 | 5 |
FROM opensuse:13.2 |
| 6 | 6 |
|
| 7 | 7 |
RUN zypper --non-interactive install ca-certificates* curl gzip rpm-build |
| 8 |
-RUN zypper --non-interactive install libbtrfs-devel device-mapper-devel glibc-static libselinux-devel libtool-ltdl-devel pkg-config selinux-policy selinux-policy-devel sqlite-devel systemd-devel tar git cmake vim-common systemd-rpm-macros |
|
| 8 |
+RUN zypper --non-interactive install libbtrfs-devel device-mapper-devel glibc-static libselinux-devel libtool-ltdl-devel pkg-config selinux-policy selinux-policy-devel sqlite-devel systemd-devel tar git cmake vim systemd-rpm-macros |
|
| 9 | 9 |
|
| 10 | 10 |
ENV GO_VERSION 1.7.3 |
| 11 | 11 |
RUN curl -fSL "https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz" | tar xzC /usr/local
|