Skip to content

Commit

Permalink
Updated build
Browse files Browse the repository at this point in the history
- Updated Makefile to use `wget` instead of `cURL` to download TailwindCSS
CLI.
- Removed `cURL` from Dockerfile installation.
  • Loading branch information
AlDu2407 committed Nov 4, 2024
1 parent bdf8a46 commit 46e4a4e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ install-tools:

install-tailwindcss:
if [ ! -f tailwindcss ]; then \
curl -sLO https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64 \
wget -q https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64 \
&& chmod +x tailwindcss-linux-x64 \
&& mv tailwindcss-linux-x64 tailwindcss; \
fi
Expand Down
1 change: 0 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ RUN apt-get update \
make \
pkg-config \
wget \
curl \
&& wget https://go.dev/dl/go1.22.0.linux-amd64.tar.gz -P golang-install \
&& cd golang-install \
&& rm -rf /usr/local/go && tar -C /usr/local -xzf go1.22.0.linux-amd64.tar.gz \
Expand Down

0 comments on commit 46e4a4e

Please sign in to comment.