Skip to content

Commit 09e89c6

Browse files
committed
fix: dockerfile
1 parent fccf590 commit 09e89c6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/helpers/docker/Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ RUN apt-get update && apt-get install -y curl wget zip
44

55
RUN ARCH=$(dpkg --print-architecture) && \
66
if [ "$ARCH" = "amd64" ]; then \
7-
wget https://github.com/supertokens/jre/raw/refs/heads/master/jre-21.0.7-linux.zip; \
7+
wget -O jre.zip https://github.com/supertokens/jre/raw/refs/heads/master/jre-21.0.7-linux.zip; \
88
elif [ "$ARCH" = "arm64" ]; then \
9-
wget https://github.com/supertokens/jre/raw/refs/heads/master/jre-21.0.7-linux-aarch.zip; \
9+
wget -O jre.zip https://github.com/supertokens/jre/raw/refs/heads/master/jre-21.0.7-linux-aarch.zip; \
1010
else \
1111
echo "Unsupported architecture: $ARCH" && exit 1; \
1212
fi
13-
RUN unzip jre-21.0.7-linux*.zip
13+
RUN ls
14+
RUN unzip jre.zip
15+
RUN ls
1416
RUN mv jre-21.0.7 jre
1517
ADD ./cli ./cli
1618
ADD ./core ./core

0 commit comments

Comments
 (0)