Skip to content

Commit

Permalink
[Update] docker file to make use of: mcr.microsoft.com/dotnet/aspnet:…
Browse files Browse the repository at this point in the history
…8.0.7-alpine3.19 AS final
  • Loading branch information
samatstariongroup committed Aug 12, 2024
1 parent 1d3c0be commit 528f7c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion COMETwebapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

Expand Down

0 comments on commit 528f7c1

Please sign in to comment.