2023-06-17 02:37:39 -06:00
|
|
|
FROM --platform=linux/amd64 ghcr.io/gbraad-devenv/fedora/base:38
|
|
|
|
|
|
|
|
USER root
|
|
|
|
|
|
|
|
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 02:37:39 -06:00
|
|
|
&& dnf clean all \
|
|
|
|
&& rm -rf /var/cache/yum
|
|
|
|
|
2023-06-17 02:40:09 -06:00
|
|
|
RUN npm install -g yarn
|
|
|
|
|
2023-06-23 21:35:14 -06:00
|
|
|
COPY .codesandbox/tailscaled /etc/init.d/taiscaled
|
|
|
|
|
2023-06-17 02:37:39 -06:00
|
|
|
USER gbraad
|
|
|
|
|
|
|
|
RUN git clone https://github.com/gbraad/dotfiles ~/.dotfiles \
|
|
|
|
&& ~/.dotfiles/install.sh
|