diff --git a/build-docker-image.sh b/build-docker-image.sh new file mode 100644 index 0000000..2aa15a5 --- /dev/null +++ b/build-docker-image.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +# Build Docker image for Voice RSS Summary project +docker build -t voice-rss-summary . diff --git a/run-docker.sh b/run-docker.sh old mode 100644 new mode 100755 index ef0f32b..d8ca167 --- a/run-docker.sh +++ b/run-docker.sh @@ -2,9 +2,9 @@ # Run Docker container with volume mounts for feed_urls.txt and .env docker run \ - --volume "$(pwd)/feed_urls.txt:/app/feed_urls.txt" \ - --volume "$(pwd)/.env:/app/.env" \ - --publish 3000:3000 \ - --tty \ - --interactive \ - voice-rss-summary + --volume "$(pwd)/feed_urls.txt:/app/feed_urls.txt" \ + --volume "$(pwd)/.env:/app/.env" \ + --publish 3000:3000 \ + --tty \ + --interactive \ + voice-rss-summary