-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile.curl
26 lines (21 loc) · 1 KB
/
Dockerfile.curl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM cfburgess/docker-examples:base-latest
LABEL [email protected]
LABEL description="Example curl image"
ENV DEBIAN_FRONTEND noninteractive
# Make sure we have the freshest
RUN apt-get -q update \
&& apt-get -y install --no-install-recommends curl \
&& apt-get -y autoremove \
&& apt-get -y clean \
&& rm -rf /var/lib/apt/lists/*
LABEL \
org.label-schema.schema-version="1.0" \
org.label-schema.vendor="Chet Burgess" \
org.label-schema.name="Docker Examples curl" \
org.label-schema.version="latest" \
org.label-schema.url="https://github.com/cburgess/docker-examples" \
org.label-schema.vcs-url="https://github.com/cburgess/docker-examples" \
license="Apache-2.0"
COPY files/entrypoint-curl.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
CMD ["curl"]