diff --git a/.github/workflows/publish-docker-container.yml b/.github/workflows/publish-docker-container.yml index 6d38b1eb..362538cc 100644 --- a/.github/workflows/publish-docker-container.yml +++ b/.github/workflows/publish-docker-container.yml @@ -18,7 +18,7 @@ jobs: id: meta uses: docker/metadata-action@v4 with: - images: rheagroup/comet-web-community-edition + images: stariongroup/comet-web-community-edition - name: Login to Docker Hub if: github.ref_type == 'tag' diff --git a/COMETwebapp/Dockerfile b/COMETwebapp/Dockerfile index 2ed1c213..706310f9 100644 --- a/COMETwebapp/Dockerfile +++ b/COMETwebapp/Dockerfile @@ -16,7 +16,7 @@ RUN dotnet build COMETwebapp -c Release -o /app/build --no-restore FROM build AS publish RUN dotnet publish COMETwebapp -c Release -o /app/publish -FROM mcr.microsoft.com/dotnet/aspnet:8.0.3-alpine3.19 AS final +FROM mcr.microsoft.com/dotnet/aspnet:8.0.7-alpine3.19 AS final WORKDIR /app COPY --from=publish /app/publish .