mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
342a2bb5d2
Bumps ubuntu from 23.10 to 24.04. --- updated-dependencies: - dependency-name: ubuntu dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
477 B
Docker
21 lines
477 B
Docker
FROM ubuntu:24.04
|
|
|
|
LABEL maintainer="mail@sobolevn.me"
|
|
LABEL vendor="git-secret team"
|
|
|
|
ENV DEBIAN_FRONTEND="noninteractive"
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y \
|
|
# Direct dependencies:
|
|
gawk \
|
|
git \
|
|
gnupg \
|
|
# Assumed to be present:
|
|
file \
|
|
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/*
|