Sebastian Stehle
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
1 deletions
-
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"] |
|
|
|
ENTRYPOINT ["dotnet", "Squidex.dll"] |
|
|
|
|