File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,15 @@ RUN apt-get update && apt-get install -y curl wget zip
44
55RUN 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
1416RUN mv jre-21.0.7 jre
1517ADD ./cli ./cli
1618ADD ./core ./core
You can’t perform that action at this time.
0 commit comments