File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,16 @@ FROM node:20-bookworm
3
3
LABEL maintainer=
"[email protected] "
4
4
5
5
RUN apt-get update && apt-get -y upgrade && apt-get -y install git openssh-client rsync jq
6
- RUN if [[ "$TARGETPLATFORM" -eq "linux/amd64" ]]; then \
7
- cd /tmp/ && wget https://github.com/watchexec/watchexec/releases/download/v2.3.2/watchexec-2.3.2-x86_64-unknown-linux-gnu.deb && dpkg -i watchexec-2.3.2-x86_64-unknown-linux-gnu.deb; \
8
- elif [[ "$TARGETPLATFORM" -eq "linux/arm64" ]]; then \
9
- cd /tmp/ && wget https://github.com/watchexec/watchexec/releases/download/v2.3.2/watchexec-2.3.2-aarch64-unknown-linux-gnu.deb && dpkg -i watchexec-2.3.2-aarch64-unknown-linux-gnu.deb; \
6
+ ARG TARGETPLATFORM
7
+ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
8
+ echo "BUILDING FOR AMD64 through $TARGETPLATFORM" ; cd /tmp/ && wget https://github.com/watchexec/watchexec/releases/download/v2.3.2/watchexec-2.3.2-x86_64-unknown-linux-gnu.deb && dpkg -i watchexec-2.3.2-x86_64-unknown-linux-gnu.deb; \
9
+ elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
10
+ echo "BUILDING FOR ARM64" && cd /tmp/ && wget https://github.com/watchexec/watchexec/releases/download/v2.3.2/watchexec-2.3.2-aarch64-unknown-linux-gnu.deb && dpkg -i watchexec-2.3.2-aarch64-unknown-linux-gnu.deb; \
11
+ elif [ "$TARGETPLATFORM" = "" ]; then \
12
+ echo "BUILDING FOR AMD64 through $TARGETPLATFORM" ; cd /tmp/ && wget https://github.com/watchexec/watchexec/releases/download/v2.3.2/watchexec-2.3.2-x86_64-unknown-linux-gnu.deb && dpkg -i watchexec-2.3.2-x86_64-unknown-linux-gnu.deb; \
10
13
else \
11
- echo "$TARGETPLATFORM not supported, check watchexec" ; \
14
+ echo "Target platform \" $TARGETPLATFORM\" not supported, check watchexec" ; \
15
+ exit 1; \
12
16
fi
13
17
14
18
ENV MU_SPARQL_ENDPOINT='http://database:8890/sparql'
You can’t perform that action at this time.
0 commit comments