Skip to content

Commit

Permalink
fix: EXPOSE port 80 update base image (#17)
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
pasqualedevita authored Oct 21, 2022
1 parent 3b76cf5 commit 5197dc8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN cd /src/dotnet-function-app && \
dotnet publish *.csproj --output /home/site/wwwroot

# https://mcr.microsoft.com/v2/azure-functions/dotnet/tags/list
FROM mcr.microsoft.com/azure-functions/dotnet:4.11.3-slim@sha256:a3f3888209af3c9f21e87527aee35d1b938a72db4f47d0e2defa1e791f58ffb4
FROM mcr.microsoft.com/azure-functions/dotnet:4.13.0-slim@sha256:a3f3888209af3c9f21e87527aee35d1b938a72db4f47d0e2defa1e791f58ffb4

RUN rm -rf /FuncExtensionBundles

Expand All @@ -24,3 +24,5 @@ RUN useradd pagopa-user && \
USER pagopa-user

RUN whoami

EXPOSE 80

0 comments on commit 5197dc8

Please sign in to comment.