Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# pinning, because AWS lightsail AMIs don't support openssh 9+ yet
FROM ruby@sha256:54d09dd38d80d8b850fbff21425d9bd159f9ff7e1de1cdbcbb0b7745f5049784
FROM ruby:3.1-slim

RUN apt-get -qq update && apt-get -qq -y install openssh-client git >/dev/null
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion lib/pull_preview/providers/lightsail.rb
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def availability_zones
def blueprint_id
blueprint_id = client.get_blueprints.blueprints.find do |blueprint|
blueprint.platform == "LINUX_UNIX" &&
blueprint.group == "amazon_linux_2" &&
blueprint.group == "amazon_linux_2023" &&
blueprint.is_active &&
blueprint.type == "os"
end.blueprint_id
Expand Down