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
23
23
24
24
# Compile Tailwind CSS
25
25
RUN 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; \
28
28
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; \
31
30
fi && \
32
31
chmod +x ./tailwindcss && \
33
32
./tailwindcss -i ./base.css -o ./main.css --minify
You can’t perform that action at this time.
0 commit comments