All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
18 lines
448 B
Docker
18 lines
448 B
Docker
FROM fedora:44
|
|
|
|
# TODO: k8s client
|
|
|
|
ENV TARGET_USER=garrettmills
|
|
ENV TARGET_UID=1000
|
|
ENV TARGET_GID=1000
|
|
|
|
COPY startup.bash /usr/sbin/startup.bash
|
|
|
|
RUN dnf install -y \
|
|
zip unzip curl tar vim htop fish stow git openssh-clients gnupg2 make nodejs \
|
|
procps-ng rsync screen sudo which autojump hostname jq the_silver_searcher wget \
|
|
coreutils util-linux \
|
|
&& chmod +x /usr/sbin/startup.bash
|
|
|
|
CMD ["/usr/sbin/startup.bash"]
|