mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
259d5e2592
Bumps fedora from 36 to 37. --- updated-dependencies: - dependency-name: fedora dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17 lines
371 B
Docker
17 lines
371 B
Docker
FROM fedora:37
|
|
|
|
LABEL maintainer="mail@sobolevn.me"
|
|
LABEL vendor="git-secret team"
|
|
|
|
RUN dnf -y update \
|
|
&& dnf install -y \
|
|
# Required for our install script:
|
|
wget \
|
|
sudo \
|
|
&& dnf clean all \
|
|
&& rm -rf /var/cache/yum \
|
|
&& adduser --password='' -m nonroot \
|
|
&& echo 'nonroot ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
|
USER nonroot
|
|
WORKDIR /home/nonroot
|