diff --git a/Dockerfile b/Dockerfile index d3916fe..008cf74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,14 +40,6 @@ ENV TZ=Europe/Zurich ENV ASPNETCORE_ENVIRONMENT=Production WORKDIR ${HOME} -# Install required packages -RUN \ - DEBIAN_FRONTEND=noninteractive && \ - mkdir -p /usr/share/man/man1 /usr/share/man/man2 && \ - apt-get update && \ - apt-get install -y curl && \ - rm -rf /var/lib/apt/lists/* - EXPOSE 80 # Set default locale @@ -56,6 +48,4 @@ ENV LC_ALL=C.UTF-8 COPY --from=build /app/publish $HOME -HEALTHCHECK CMD curl --fail http://localhost/ || exit 1 - ENTRYPOINT ["dotnet", "EWS.dll"]