Skip to content

Commit

Permalink
only 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skoc10 committed Oct 26, 2023
1 parent 927565f commit 402832a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0.102-bullseye-slim AS base
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS base
WORKDIR /src
COPY . .
RUN dotnet tool install -g Volo.Abp.Cli
Expand All @@ -7,7 +7,7 @@ WORKDIR /src/CmsKitDemo
RUN abp install-libs
RUN dotnet publish -c Release -o bin/Release/publish

FROM mcr.microsoft.com/dotnet/aspnet:7.0.11-bullseye-slim AS final
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS final
RUN apt-get update && apt-get install -y libgdiplus
WORKDIR /app/sqliteDb
COPY --from=base /src/CmsKitDemo.db .
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile.azure
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/aspnet:7.0-bullseye-slim AS base
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
RUN apt-get update && apt-get install -y libgdiplus
WORKDIR /app
EXPOSE 80
Expand Down

0 comments on commit 402832a

Please sign in to comment.