Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
kyclark committed Dec 10, 2020
1 parent fbd518f commit 5ca1932
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
11 changes: 0 additions & 11 deletions docker/Dockerfile39

This file was deleted.

35 changes: 24 additions & 11 deletions docker/Makefile
Original file line number Diff line number Diff line change
@@ -1,42 +1,55 @@
TAG39 = kyclark/biofx_python_3.9:0.1.0
TAG390 = kyclark/biofx_python_3.9.0:0.1.0
TAG391 = kyclark/biofx_python_3.9.1:0.1.0
TAG38 = kyclark/biofx_python_3.8:0.1.0
TAG310 = kyclark/biofx_python_3.10:0.1.0
DOCKER = sudo docker

39:
$(DOCKER) build --tag=$(TAG39) -f Dockerfile.3.9 .
391:
$(DOCKER) build --tag=$(TAG39) -f Dockerfile391 .

390:
$(DOCKER) build --tag=$(TAG39) -f Dockerfile390 .

38:
$(DOCKER) build --tag=$(TAG38) -f Dockerfile.3.8 .
$(DOCKER) build --tag=$(TAG38) -f Dockerfile38 .

310:
$(DOCKER) build --tag=$(TAG310) -f Dockerfile.3.10
$(DOCKER) build --tag=$(TAG310) -f Dockerfile310

test: test38 test39 test310

test38:
$(DOCKER) run $(TAG38) /app/biofx_python/bin/uber_test.sh

test39:
$(DOCKER) run $(TAG39) /app/biofx_python/bin/uber_test.sh
test390:
$(DOCKER) run $(TAG390) /app/biofx_python/bin/uber_test.sh

test391:
$(DOCKER) run $(TAG391) /app/biofx_python/bin/uber_test.sh

test310:
$(DOCKER) run $(TAG310) /app/biofx_python/bin/uber_test.sh

shell38:
$(DOCKER) run -it $(TAG38) bash

shell39:
$(DOCKER) run -it $(TAG39) bash
shell390:
$(DOCKER) run -it $(TAG390) bash

shell391:
$(DOCKER) run -it $(TAG391) bash

shell310:
$(DOCKER) run -it $(TAG310) bash

push38:
$(DOCKER) push $(TAG38)

push39:
$(DOCKER) push $(TAG39)
push390:
$(DOCKER) push $(TAG390)

push391:
$(DOCKER) push $(TAG391)

push310:
$(DOCKER) push $(TAG310)

0 comments on commit 5ca1932

Please sign in to comment.