Skip to content

Commit

Permalink
3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
davidleonm committed Nov 19, 2024
1 parent 21e91c2 commit 17de4f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/on-push-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,6 @@ jobs:
file: ./Dockerfile
push: true
platforms: linux/arm64
tags: weatherstationproject/dashboard:${{ steps.dashboard_version.outputs.version }} , weatherstationproject/dashboard:latest
tags: |
weatherstationproject/dashboard:${{ steps.dashboard_version.outputs.version }}
weatherstationproject/dashboard:latest
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG PROJECT_NAME_ARG
ARG ENVIRONMENT_ARG

# Pull down the image with .NET Core SDK
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine-arm64v8 AS Build
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine3.20-arm64v8 AS Build
LABEL maintainer="David Leon <david.leon.m@gmail.com>"

# Global args re-mapped for this stage
Expand All @@ -24,7 +24,7 @@ WORKDIR "/src/$PROJECT_NAME_ARG"
RUN dotnet publish "./$PROJECT_NAME_ARG.csproj" --configuration Release --output "/app/publish"

# Pull down the image which includes only the ASP.NET core runtime
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine-arm64v8
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine3.20-arm64v8

# Install needed app
RUN apk --no-cache add curl
Expand Down

0 comments on commit 17de4f4

Please sign in to comment.