mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
12 lines
229 B
Text
12 lines
229 B
Text
|
FROM golang:1.20
|
||
|
|
||
|
RUN apt update && apt install -y sudo git
|
||
|
|
||
|
ARG USERNAME=root
|
||
|
RUN echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
|
||
|
&& chmod 0440 /etc/sudoers.d/$USERNAME
|
||
|
|
||
|
ENV DEVCONTAINER=true
|
||
|
|
||
|
COPY . .
|