feat: add basic docker build
This commit is contained in:
5
docker/Dockerfile
Normal file
5
docker/Dockerfile
Normal file
@@ -0,0 +1,5 @@
|
||||
FROM python:3.11-alpine
|
||||
|
||||
COPY example-files .
|
||||
|
||||
CMD ["ls", "/shows"]
|
||||
4
docker/build.sh
Executable file
4
docker/build.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# builds a container with the current Dockerfile for testing the bb-asset-validation program
|
||||
docker build -t bb-asset-validation .
|
||||
1
docker/example-files
Symbolic link
1
docker/example-files
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/parker/MyRepos/bluebolt-asset-version-validation/example-files
|
||||
4
docker/run.sh
Normal file
4
docker/run.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# run the docker container for testing the bb-asset-validation program
|
||||
docker run bb-asset-validation
|
||||
Reference in New Issue
Block a user