feat: add basic docker build

This commit is contained in:
2025-10-03 13:19:37 +01:00
commit 4401d9fa86
5 changed files with 14 additions and 0 deletions

5
docker/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.11-alpine
COPY example-files .
CMD ["ls", "/shows"]

4
docker/build.sh Executable file
View 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
View File

@@ -0,0 +1 @@
/home/parker/MyRepos/bluebolt-asset-version-validation/example-files

4
docker/run.sh Normal file
View 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