Added pitch presentation #18
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 Image CI | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and Run Docker container with pytest | |
run: | | |
# Build the Docker image | |
docker build . --file ./.devcontainer/Dockerfile --tag shift2sdv:latest --target dev | |
docker images |