Skip to content

Commit

Permalink
Merge pull request #3 from yaacov/update-dockerfile
Browse files Browse the repository at this point in the history
update-makefile
  • Loading branch information
yaacov authored Jan 8, 2024
2 parents 9e1d1cf + 2b04bcf commit c1d3d2e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
3.9
3.12
- name: Install dependencies
run: pip install --no-cache-dir -r requirements.txt
- name: Install dev dependencies
run: pip install --no-cache-dir -r requirements-dev.txt

- name: Lint
run: make lint
Expand All @@ -25,4 +25,4 @@ jobs:
run: make test

- name: Run code quality test
run: code-quality
run: make code-quality
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ build-image:

run-image:
@echo "Running container image ..."
podman run --rm \
podman run --rm -it \
--network host \
-v ../../examples:/app/examples:z \
-it $(IMAGE_NAME) \
--port $(PORT) \
--driver $(DRIVER_PATH)
-v ./examples:/app/examples:z \
-e PORT=$(PORT) \
-e DRIVER=$(DRIVER_PATH) \
$(IMAGE_NAME)

clean:
-rm -rf .coverage
Expand Down

0 comments on commit c1d3d2e

Please sign in to comment.