cockpit-tailscale/.gitpod/Dockerfile

15 lines
366 B
Docker
Raw 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 \
docker cockpit \
2023-06-17 00:39:38 -06:00
make npm \
2023-06-17 00:17:53 -06:00
&& dnf clean all \
&& rm -rf /var/cache/yum
USER gitpod