Fix Dockerfile to work on Silicon chip #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker-build | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: | |
- master | |
- gis-based-mode-detection | |
pull_request: | |
branches: | |
- master | |
- gis-based-mode-detection | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '5 4 * * 0' | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
include: | |
- os: macos-latest | |
PLATFORM: MacOSX-x86_64 | |
- os: ubuntu-latest | |
PLATFORM: Linux-x86_64 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: check my platform | |
shell: bash -l {0} | |
run: | | |
uname -a | |
uname -m | |
# Install Docker and Docker Compose | |
- name: Install Docker and Docker Compose | |
run: | | |
brew install --cask docker | |
brew install docker-compose | |
# Start Docker | |
- name: Start Docker Service | |
run: | | |
open /Applications/Docker.app | |
while ! docker system info > /dev/null 2>&1; do sleep 1; done | |
# Run Docker commands | |
- name: Run a Docker container | |
run: | | |
docker run hello-world |