Add detailed usage instructions to the readme #2
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: Build Docker image | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --tag mitmproxy-pretendo | |
- name: Save the Docker image | |
run: docker save mitmproxy-pretendo -o mitmproxy-pretendo.tar | |
- name: Upload the Docker image | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mitmproxy-pretendo-docker-image-${{ github.sha }} | |
path: mitmproxy-pretendo.tar |