Skip to content
This repository has been archived by the owner on Aug 19, 2020. It is now read-only.

Fix keepalived dependencies #35

Merged
merged 1 commit into from
Jan 13, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM gcr.io/google_containers/ubuntu-slim:0.14
FROM gcr.io/google-containers/debian-base-amd64:0.3

RUN apt-get update && apt-get install -y --no-install-recommends \
libssl1.0.0 \
RUN clean-install \
libssl1.1 \
libnl-3-200 \
libnl-route-3-200 \
libnl-genl-3-200 \
iptables \
libxtables12 \
libnfnetlink0 \
libiptcdata0 \
libipset3 \
Expand All @@ -30,9 +31,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
iproute2 \
curl \
ipvsadm \
bash && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
bash

ADD keepalived.tar.gz /

Expand Down