Files
matrix-setup/Dockerfile
gyurix 1134fd915c
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Enhance Dockerfile and start.sh: add curl, openssl, and jq; update HOMESERVER_URL to use HTTPS; improve admin user registration logic and error handling
2025-09-01 16:08:08 +02:00

9 lines
129 B
Docker

FROM alpine:latest
RUN apk add --no-cache yq curl openssl jq
COPY start.sh /start.sh
RUN chmod +x /start.sh
CMD ["/start.sh"]