ops: Remove amd64 platform limitation
Some checks failed
ci / docker-build (pull_request) Failing after 5m42s
ci / build-and-test (pull_request) Has been skipped

This commit is contained in:
Brock Allen
2024-01-27 22:47:35 +00:00
parent 105c1be3df
commit 2df45c01ff
4 changed files with 2 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ ARG base_tag=bullseye
ARG base_img=mcr.microsoft.com/vscode/devcontainers/base:dev-${base_tag}
# ARG base_img=debian:${base_tag}
FROM --platform=linux/amd64 ${base_img} AS builder-install
FROM ${base_img} AS builder-install
# the following shows how to install the latest version of a package.
# you can determine the installed version with `apt-cache policy <list of packages>` and fix