diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index d2e058c..4a205e6 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -59,7 +59,7 @@ jobs: - name: Test container startup run: | echo "Testing if the container starts successfully..." - docker run --rm -d --name test-container -p 5001:5000 \ + docker run --rm -d --name test-container -p 5000:5000 \ -e TZ=Europe/Paris \ -e ENABLE_ZABBIX=false \ ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest diff --git a/Dockerfile b/Dockerfile index 8326cf0..029232b 100755 --- a/Dockerfile +++ b/Dockerfile @@ -23,12 +23,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* \ && rm zabbix-release_latest_7.4+debian12_all.deb COPY requirements.txt . -COPY run-web.py . +#COPY run-web.py . COPY ./database ./database COPY ./discordbot ./discordbot COPY ./protondb ./protondb COPY ./webapp ./webapp -#COPY ./twitchbot ./twitchbot +COPY ./twitchbot ./twitchbot COPY zabbix_agent2.conf /etc/zabbix/zabbix_agent2.conf COPY start.sh /start.sh