16 lines
230 B
Docker
16 lines
230 B
Docker
FROM git.unkin.net/unkin/agent-base:latest
|
|
|
|
USER root
|
|
|
|
RUN dnf install -y \
|
|
golang \
|
|
nodejs \
|
|
npm \
|
|
python3 \
|
|
python3-pip \
|
|
make \
|
|
ripgrep \
|
|
&& dnf clean all
|
|
|
|
USER agent
|