File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,10 @@ RUN --mount=type=cache,target=$POETRY_CACHE_DIR poetry install --without dev
2323
2424# Compile Tailwind CSS
2525RUN echo "Downloading Tailwind CLI for ${TARGETARCH}" && \
26- if [ "${TARGETARCH}" = "arm64 " ]; then \
27- curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-arm64 -o ./tailwindcss; \
26+ if [ "${TARGETARCH}" = "amd64 " ]; then \
27+ curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64 -o ./tailwindcss; \
2828 else \
29- echo "Downloading amd64 version of Tailwind CSS" ; \
30- curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-amd64 -o ./tailwindcss; \
29+ curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-${TARGETARCH} -o ./tailwindcss; \
3130 fi && \
3231 chmod +x ./tailwindcss && \
3332 ./tailwindcss -i ./base.css -o ./main.css --minify
You can’t perform that action at this time.
0 commit comments