mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-29 15:25:50 +00:00
feat(db): implement db-init container for migration generation and application feat(client): create client-builder for on-demand client rebuilds refactor(server): optimize Dockerfile and entrypoint for better build process refactor(tools): enhance module install/uninstall with Docker reload options fix(tools): prevent migration history-sync in Docker mode feat(tools): add docker management commands for reload functionality
13 lines
332 B
Docker
13 lines
332 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
# ============================================
|
|
# PocketBase - Minimal database image
|
|
# ============================================
|
|
FROM ghcr.io/muchobien/pocketbase:latest
|
|
|
|
# Copy entrypoint script
|
|
COPY docker/db/entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|