We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e9885d7 + 18e5284 commit d3ca5b1Copy full SHA for d3ca5b1
src/CarbonAware.WebApi/src/Dockerfile
@@ -13,6 +13,10 @@ RUN dotnet tool restore && \
13
14
# Build runtime image
15
FROM mcr.microsoft.com/dotnet/aspnet:6.0
16
+# Install curl for health check
17
+RUN apt-get update && \
18
+ apt-get install -y --no-install-recommends curl
19
+# Copy artifacts from build-env
20
WORKDIR /app
21
COPY --from=build-env /app/publish .
22
ENTRYPOINT ["dotnet", "CarbonAware.WebApi.dll"]
0 commit comments