Skip to content

Commit

Permalink
fix: Add tailwind extra
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Dec 8, 2024
1 parent e726c0b commit 6869a24
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dev-env-as-code/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 6869a24

Please sign in to comment.