Files
auth-mistox/docker-entrypoint.sh
T
derek 0a9ee122e7
Docker Build and Release Upload / build (push) Successful in 1m26s
Update docker entry
2025-07-26 12:10:45 -07:00

10 lines
262 B
Bash

#!/bin/sh
# Copy certs-gen.sh into the mounted /certs volume if it doesn't exist
if [ ! -f /certs/cert-gen.sh ]; then
cp /cert-gen.sh /certs/cert-gen.sh
chmod +x /certs/cert-gen.sh
fi
# Launch the application
exec dotnet Server.dll --urls http://+:5000