We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6501822 commit 7a0be0cCopy full SHA for 7a0be0c
Dockerfile.api
@@ -5,6 +5,9 @@ WORKDIR /source
5
# Update OS packages
6
RUN apt-get update && apt-get upgrade -y
7
8
+# Optionally, force install a specific version of perl-base if it is available.
9
+RUN apt-get install -y perl-base=5.40.0-8
10
+
11
# Copy the entire solution
12
COPY . ./
13
@@ -13,8 +16,7 @@ RUN dotnet restore
16
RUN dotnet publish -c Release -o /publish
14
17
15
18
# Runtime stage
-FROM mcr.microsoft.com/dotnet/sdk:9.0-bookworm-slim
-# mcr.microsoft.com/dotnet/aspnet:9.0-slim
19
+FROM mcr.microsoft.com/dotnet/sdk:9.0
20
WORKDIR /app
21
COPY --from=build /publish .
22
0 commit comments