Skip to content

Commit

Permalink
Add CircleCi config
Browse files Browse the repository at this point in the history
  • Loading branch information
tgxworld committed Oct 13, 2023
1 parent 2b70024 commit c87c95b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/configuration-reference
version: 2.1

# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/configuration-reference/#jobs
jobs:
build:
working_directory: image
docker:
- image: cimg/base:current
resource_class: arm.medium
steps:
- checkout
- run:
name: Build application Docker image
command: |
cd base && docker buildx build . --load --platform linux/arm64 --tag discourse/base:build_slim -f slim.Dockerfile

0 comments on commit c87c95b

Please sign in to comment.