git-secret/.ci/docker-ci/ubuntu/Dockerfile

21 lines
477 B
Docker
Raw Normal View History

FROM ubuntu:23.10
2021-05-03 11:10:39 +00:00
2021-05-03 11:43:02 +00:00
LABEL maintainer="mail@sobolevn.me"
LABEL vendor="git-secret team"
2021-05-03 11:10:39 +00:00
ENV DEBIAN_FRONTEND="noninteractive"
RUN apt-get update \
2021-05-03 16:21:33 +00:00
&& apt-get install --no-install-recommends -y \
2021-05-03 11:10:39 +00:00
# Direct dependencies:
gawk \
git \
gnupg \
# Assumed to be present:
file \
2021-05-03 11:10:39 +00:00
procps \
make \
# Cleaning cache:
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*