Skip to content

Commit 36f6d7a

Browse files
committed
fix(editor-server): Fix alpine linux.
1 parent 6ff7a83 commit 36f6d7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/editor-server/Dockerfile.alpine

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ RUN aria2c -o flutter.tar.xz https://storage.googleapis.com/flutter_infra_releas
6161
&& rm -f flutter.tar.xz
6262

6363
# install cli53 gsmlg-cli
64-
RUN export ARCH=`dpkg --print-architecture`; \
65-
curl -sSfL https://github.com/barnybug/cli53/releases/latest/download/cli53-linux-${ARCH} -o /usr/local/bin/cli53 \
64+
ARG ARCH=amd64
65+
RUN curl -sSfL https://github.com/barnybug/cli53/releases/latest/download/cli53-linux-${ARCH} -o /usr/local/bin/cli53 \
6666
&& chmod +x /usr/local/bin/cli53 \
6767
&& curl -sSfL https://github.com/gsmlg-dev/gsmlg-cli/releases/latest/download/gsmlg-cli_linux_${ARCH} -o /usr/local/bin/gsmlg-cli \
6868
&& chmod +x /usr/local/bin/gsmlg-cli

0 commit comments

Comments
 (0)