This commit is contained in:
zman 2025-04-07 11:54:24 -04:00
parent 0c78276b12
commit 87c84fd0a8

View File

@ -21,12 +21,12 @@ jobs:
- name: Build Docker Image - name: Build Docker Image
run: | run: |
docker build -t giga_tcg . # Build the Docker image using the Dockerfile docker build -t giga_tcg .
- name: Remove existing Docker container - name: Remove existing Docker container
run: | run: |
docker rm -f giga_tcg_container || true # Remove any existing container with the name docker rm -f giga_tcg_container || true
- name: Run Docker container - name: Run Docker container
run: | run: |
docker run -d -p 8000:8000 --name giga_tcg_container giga_tcg # Run the new container docker run -d -p 8000:8000 --name giga_tcg_container giga_tcg