diff --git a/Dockerfile b/Dockerfile index 8ca27e8..ba34f15 100755 --- a/Dockerfile +++ b/Dockerfile @@ -77,4 +77,6 @@ COPY --from=build-backend /app/publish ./ # Copy in the client COPY --from=build-frontend /debug/wwwroot ./wwwroot/ -ENTRYPOINT ["dotnet", "Server.dll", "--url", "http://localhost:5000"] \ No newline at end of file +COPY docker-entrypoint.sh /docker-entrypoint.sh +RUN chmod +x /docker-entrypoint.sh +ENTRYPOINT ["/docker-entrypoint.sh"] \ No newline at end of file