From 60799ae9b7eb5f23087019dcd842e3d5dcda0a49 Mon Sep 17 00:00:00 2001 From: "Satsuki Akiba (aider)" Date: Wed, 4 Jun 2025 16:13:26 +0900 Subject: [PATCH] feat: add build script for docker image --- build-docker-image.sh | 4 ++++ run-docker.sh | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 build-docker-image.sh mode change 100644 => 100755 run-docker.sh 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