Browse Source

Install curl.

pull/443/head
Sebastian Stehle 6 years ago
committed by GitHub
parent
commit
f9f4660e79
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      Dockerfile

6
Dockerfile

@ -56,6 +56,10 @@ RUN cp -a build /build/
# #
FROM mcr.microsoft.com/dotnet/core/aspnet:3.0-buster-slim 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 # Default AspNetCore directory
WORKDIR /app WORKDIR /app
@ -66,4 +70,4 @@ COPY --from=frontend /build/ wwwroot/build/
EXPOSE 80 EXPOSE 80
EXPOSE 11111 EXPOSE 11111
ENTRYPOINT ["dotnet", "Squidex.dll"] ENTRYPOINT ["dotnet", "Squidex.dll"]

Loading…
Cancel
Save