-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile.base
More file actions
23 lines (18 loc) · 833 Bytes
/
Dockerfile.base
File metadata and controls
23 lines (18 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM debian:buster-slim
LABEL maintainer=cfb@liquidreality.org
LABEL description="Example base image"
ENV DEBIAN_FRONTEND noninteractive
# Make sure we have the freshest
RUN apt-get -q update \
&& 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 Base" \
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"
CMD ["bash"]