mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-26 12:29:07 +00:00
Multiarch implementation for amd64, arm64 and arm32
This commit is contained in:
21
.circleci/config.yml
Normal file
21
.circleci/config.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
machine: true
|
||||
steps:
|
||||
- checkout
|
||||
#- run:
|
||||
# name : Getting docker
|
||||
# command: curl https://get.docker.com | sh
|
||||
- run:
|
||||
name: Enabling qemu
|
||||
command: docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
||||
- run:
|
||||
name: Building arm based image.
|
||||
command: docker build -t arm-test .
|
||||
- run:
|
||||
name: Listing built images
|
||||
command: docker images
|
||||
# - run:
|
||||
# name: Running arm based image.
|
||||
# command: docker run --rm arm-test
|
||||
Reference in New Issue
Block a user