From b926cf9d844d720d316baf3e41bb96d68aff917b Mon Sep 17 00:00:00 2001 From: ikedam Date: Thu, 22 Jul 2021 13:50:54 +0900 Subject: [PATCH] Build alpine container in CI (#870) --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index b55a04f7a..474e6d67c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,6 +24,11 @@ jobs: command: | docker build -t mozilla/sops . docker tag mozilla/sops "mozilla/sops:$CIRCLE_SHA1" + - run: + name: Build containers (alpine) + command: | + # Just to ensure the container can be built. + docker build -f Dockerfile.alpine -t mozilla/sops:alpine . push: machine: true