From 6869a24a61929fe247bdbc4c8f3b74a4a03f046d Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 8 Dec 2024 14:17:28 +0000 Subject: [PATCH] fix: Add tailwind extra --- dev-env-as-code/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-env-as-code/Dockerfile b/dev-env-as-code/Dockerfile index f728ca69..46c2e9af 100644 --- a/dev-env-as-code/Dockerfile +++ b/dev-env-as-code/Dockerfile @@ -114,6 +114,11 @@ RUN apt-get -y update \ && apt-get -y --no-install-recommends install docker-ce docker-ce-cli containerd.io \ && apt-get autoremove -y && apt-get clean -y \ + # Tailwind binary + extra + && curl -OL https://github.com/dobicinaitis/tailwind-cli-extra/releases/latest/download/tailwindcss-extra-linux-x64 \ + && chmod +x tailwindcss-extra-linux-x64 \ + && mv tailwindcss-extra-linux-x64 /usr/local/bin/tailwind-extra \ + # Create a non-root user && groupadd --gid $USER_GID $USERNAME \ && useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME \