Updates to README with details about command line flags. #124
Workflow file for this run
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 | |
on: [push] | |
jobs: | |
docker-build: | |
# we are using ubuntu as it ships with docker pre-installed | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Our Dockerfile runs all of our Go Tests | |
- name: Build and Test Docker Image | |
run: docker build --tag wr-container . |