blob: d8548d89ae96097c8ed35a76937cfae79fbdd05c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FROM ubuntu:18.04
RUN set -x \
&& apt-get update \
&& apt-get install -y \
netcat \
&& rm -rf /var/lib/apt/lists/*
# Accept a host and port parameter.
ENV host localhost
ENV port 8080
# Spin until we make a successful request.
CMD ["sh", "-c", "while ! nc -zv $host $port; do true; done"]
|