This commit is contained in:
2026-01-01 22:00:12 -05:00
parent 913875188a
commit da3a464897
10 changed files with 624 additions and 37 deletions

View File

@@ -24,10 +24,16 @@ RUN mkdir -p /app/chromadb /app/database
# Expose port
EXPOSE 8080
# Copy application source code
COPY . .
# Make startup script executable
RUN chmod +x /app/startup-dev.sh
# Set environment variables
ENV PYTHONPATH=/app
ENV CHROMADB_PATH=/app/chromadb
ENV PYTHONUNBUFFERED=1
# The actual source code will be mounted as a volume
# No CMD here - will be specified in docker-compose
# Default command
CMD ["/app/startup-dev.sh"]