Delete web/baboon-tracking-status directory #194
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: Python Docker Environment Build | |
on: | |
push: | |
branches: [ master, feature/thesis ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ github.token }} | |
- name: Build Python Container | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
push: true | |
file: ./Dockerfile | |
tags: ghcr.io/ucsd-e4e/baboon-tracking:python |