13 lines
371 B
Docker
13 lines
371 B
Docker
pcupFROM registry.ask-eve-ai-local.com/josakola/eveai-base:latest
|
|
|
|
# Service-specific packages (ffmpeg only needed for this service)
|
|
USER root
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ffmpeg \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
USER appuser
|
|
|
|
# Copy the service-specific source code into the container.
|
|
COPY eveai_workers /app/eveai_workers
|
|
|