Skip to content

Commit

Permalink
Fix Docker test.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennwc committed Nov 29, 2023
1 parent 5628a60 commit 5f3deb1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ WORKDIR /workspace
# install deps
RUN apt-get update && \
apt-get install -y \
curl
curl libopus-dev

RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then GOARCH=arm64; else GOARCH=amd64; fi && \
curl -L -o /tmp/go.tar.gz "https://go.dev/dl/go1.20.7.linux-$GOARCH.tar.gz"
Expand All @@ -35,6 +35,7 @@ RUN go mod download

# copy source
COPY pkg/ pkg/
COPY res/ res/
COPY version/ version/

COPY build/test/entrypoint.sh .
Expand Down

0 comments on commit 5f3deb1

Please sign in to comment.