Skip to content

Commit

Permalink
[PAGOPA-1482] ci: fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
cap-ang committed Feb 6, 2024
1 parent 17b47d3 commit bd21f70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG JAVA_VERSION=11
# This image additionally contains function core tools – useful when using custom extensions
FROM mcr.microsoft.com/azure-functions/java:4.0-java${JAVA_VERSION-build}-core-tools AS installer-env
FROM mcr.microsoft.com/azure-functions/java:4.0-java${JAVA_VERSION}-core-tools AS installer-env

COPY . /src/java-function-app
RUN cd /src/java-function-app && \
Expand All @@ -11,7 +11,7 @@ RUN cd /src/java-function-app && \
cp -a . /home/site/wwwroot

# This image is ssh enabled
FROM mcr.microsoft.com/azure-functions/java:4-java${JAVA_VERSION-build}-core-tools
FROM mcr.microsoft.com/azure-functions/java:4-java${JAVA_VERSION}-core-tools

ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
AzureFunctionsJobHost__Logging__Console__IsEnabled=false
Expand Down

0 comments on commit bd21f70

Please sign in to comment.