Fast IAAI implementation
This commit is contained in:
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM python:3.13-slim
|
||||
|
||||
ENV PYTHONDONTWRITEBYTECODE=1
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN pip install --no-cache-dir --upgrade pip
|
||||
|
||||
COPY pyproject.toml /app/
|
||||
COPY iaai_sync_service /app/iaai_sync_service
|
||||
COPY alembic.ini /app/alembic.ini
|
||||
COPY alembic /app/alembic
|
||||
COPY sync_runtime_config.json /app/sync_runtime_config.json
|
||||
|
||||
RUN pip install --no-cache-dir . \
|
||||
&& playwright install --with-deps chromium
|
||||
|
||||
CMD ["python", "-m", "iaai_sync_service.cli"]
|
||||
Reference in New Issue
Block a user