Skip to content
Closed
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
8 changes: 8 additions & 0 deletions .github/workflows/presubmit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,10 @@ jobs:
- name: Build docker image
shell: bash
run: |
sudo apt install -y skopeo
skopeo copy \
docker://marketplace.gcr.io/google/debian12:latest \
docker-daemon:marketplace.gcr.io/google/debian12:latest
tar -xvf debs_amd64.tar
container/image-builder.sh -m dev
- name: Save docker image
Expand All @@ -261,6 +265,10 @@ jobs:
- name: Build docker image
shell: bash
run: |
sudo apt install -y skopeo
skopeo copy \
docker://marketplace.gcr.io/google/debian12:latest \
docker-daemon:marketplace.gcr.io/google/debian12:latest
tar -xvf debs_arm64.tar
container/image-builder.sh -m dev
- name: Save docker image
Expand Down
2 changes: 1 addition & 1 deletion container/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ARG BUILD_OPTION=prod


FROM debian:12 AS runner-base
FROM marketplace.gcr.io/google/debian12:latest AS runner-base

# Expose Operator Port (HTTP:1080, HTTPS:1443)
EXPOSE 1080 1443
Expand Down
2 changes: 2 additions & 0 deletions container/image-builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ case "${container_type}" in
exit 1
esac

"${container_type}" pull "marketplace.gcr.io/google/debian12:latest"

pushd $android_cuttlefish_root_dir
"${container_type}" build \
--force-rm \
Expand Down
Loading