Skip to content

Commit

Permalink
Support debian stretch past EOL
Browse files Browse the repository at this point in the history
Migrating to newer release is a project for the future.
  • Loading branch information
hwine committed Nov 14, 2023
1 parent ad4614b commit 5097d87
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions integration_test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
FROM circleci/android:api-25-node8-alpha

# from https://stackoverflow.com/a/49585503 fixes "NO_PUBKEY
# B53DC80D13EDEF05" issue
RUN curl -s -f https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add - 2>/dev/null

# debian stretch is out of support, so update URLs
# from https://stackoverflow.com/a/76095392
# Update stretch repositories
RUN sudo sed -i -e 's/deb.debian.org/archive.debian.org/g' \
-e 's|security.debian.org|archive.debian.org/|g' \
-e '/stretch-updates/d' /etc/apt/sources.list

RUN sudo apt-get update && \
sudo apt-get install -y curl netcat android-sdk-build-tools

Expand Down

0 comments on commit 5097d87

Please sign in to comment.