mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-03 07:47:27 +00:00
* WIP * wip * Update keto.yml, socket_routes.go, and 12 more files... * fixes and docs * Update api.js * Update auth.go and api.js * Update user_role_provider.go * Update config_routes.go and api.js * Update consts.go
14 lines
229 B
Docker
14 lines
229 B
Docker
FROM oryd/keto:v0.7.0-alpha.1-sqlite
|
|
|
|
USER root
|
|
|
|
RUN apk add sqlite
|
|
|
|
RUN mkdir -p /etc/config/keto
|
|
|
|
COPY ./keto.yml /etc/config/keto/keto.yml
|
|
COPY ./start.sh /opt/start.sh
|
|
RUN chmod +x /opt/start.sh
|
|
|
|
ENTRYPOINT ["/opt/start.sh"]
|