We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b2dd51 commit 62748ffCopy full SHA for 62748ff
lib/pgpm/deb/builder.rb
@@ -6,7 +6,7 @@ class Builder
6
7
def initialize(spec)
8
@spec = spec
9
- @image_name = "pgpm-debian12"
+ @image_name = "quay.io/qount25/pgpm-debian12"
10
@container_name = "pgpm-debian12_build-#{Time.now.to_i}_#{rand(10000)}"
11
end
12
@@ -38,7 +38,7 @@ def create_container
38
system("podman image exists #{@image_name}")
39
if $?.to_i > 0 # image doesn't exist -- pull image from a remote repository
40
puts " Pulling image #{@image_name}..."
41
- # TODO
+ system("podman pull quay.io/qount25/pgpm-debian12")
42
else
43
puts " Image #{@image_name} already exists! OK"
44
0 commit comments