We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f5b797 commit b19eea1Copy full SHA for b19eea1
Dockerfile
@@ -1,5 +1,4 @@
1
-# pinning, because AWS lightsail AMIs don't support openssh 9+ yet
2
-FROM ruby@sha256:54d09dd38d80d8b850fbff21425d9bd159f9ff7e1de1cdbcbb0b7745f5049784
+FROM ruby:3.1-slim
3
4
RUN apt-get -qq update && apt-get -qq -y install openssh-client git >/dev/null
5
WORKDIR /app
lib/pull_preview/providers/lightsail.rb
@@ -148,7 +148,7 @@ def availability_zones
148
def blueprint_id
149
blueprint_id = client.get_blueprints.blueprints.find do |blueprint|
150
blueprint.platform == "LINUX_UNIX" &&
151
- blueprint.group == "amazon_linux_2" &&
+ blueprint.group == "amazon_linux_2023" &&
152
blueprint.is_active &&
153
blueprint.type == "os"
154
end.blueprint_id
0 commit comments