Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ikrong committed Jul 9, 2024
1 parent 5713ab0 commit d4e772d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion angular/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,15 @@ COPY --from=git /app/source /app/source/

RUN <<EOF
set -e

apt update
apt install -y libnss3
apt install apt-transport-https curl gnupg -y
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg
mv bazel-archive-keyring.gpg /usr/share/keyrings
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list
apt update
apt install bazel

cd /app/source/
yarn install --frozen-lockfile --non-interactive
# yarn bazel build //adev:build --fast_adev --config=release --verbose_failures=true --sandbox_debug
Expand Down

0 comments on commit d4e772d

Please sign in to comment.