From f9f4660e79f2b84a92de9ce062d1fc65212c8051 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Sun, 27 Oct 2019 16:09:48 +0100 Subject: [PATCH] Install curl. --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8f12d0c46..d65b9c674 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,6 +56,10 @@ RUN cp -a build /build/ # FROM mcr.microsoft.com/dotnet/core/aspnet:3.0-buster-slim +# add libuv & curl +RUN apk update \ + && apk add --no-cache curl \ + # Default AspNetCore directory WORKDIR /app @@ -66,4 +70,4 @@ COPY --from=frontend /build/ wwwroot/build/ EXPOSE 80 EXPOSE 11111 -ENTRYPOINT ["dotnet", "Squidex.dll"] \ No newline at end of file +ENTRYPOINT ["dotnet", "Squidex.dll"]