cockpit-tailscale/.gitpod/Dockerfile

19 lines
423 B
Docker
Raw Permalink Normal View History

2023-06-17 00:17:53 -06:00
FROM --platform=linux/amd64 ghcr.io/gbraad-devenv/fedora/base:38
USER root
# Add gitpod user with the expected ID (automated setup does not work atm)
RUN useradd -l -u 33333 -G wheel -md /home/gitpod -s /usr/bin/zsh -p gitpod gitpod
RUN dnf install -y \
2023-06-23 03:30:10 -06:00
docker \
cockpit \
2023-06-23 21:35:14 -06:00
passwd \
2023-06-23 03:30:10 -06:00
make \
npm \
rpm-build \
2023-06-17 00:17:53 -06:00
&& dnf clean all \
&& rm -rf /var/cache/yum
USER gitpod