11 lines
334 B
Docker
11 lines
334 B
Docker
FROM registry.ask-eve-ai-local.com/josakola/eveai-base:latest
|
|
|
|
# Service-specific directories (preserve crewai_storage)
|
|
USER root
|
|
RUN mkdir -p /app/crewai_storage && chown -R appuser:appuser /app/crewai_storage
|
|
USER appuser
|
|
|
|
# Copy the service-specific source code into the container.
|
|
COPY eveai_chat_workers /app/eveai_chat_workers
|
|
|