mirror of
https://github.com/omnara-ai/omnara.git
synced 2025-08-12 20:39:09 +03:00
13 lines
262 B
Docker
13 lines
262 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy shared requirements
|
|
COPY shared/requirements.txt /app/shared/requirements.txt
|
|
RUN pip install --no-cache-dir -r shared/requirements.txt
|
|
|
|
# Copy shared code
|
|
COPY shared /app/shared
|
|
|
|
# Set Python path
|
|
ENV PYTHONPATH=/app |