mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-05 05:39:11 +00:00
Add dockerfile to containerize telemetry server
This commit is contained in:
10
src/telemetry/Dockerfile
Normal file
10
src/telemetry/Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
# Get Base Image
|
||||
FROM tiangolo/uvicorn-gunicorn:python3.11-slim
|
||||
LABEL org.opencontainers.image.source https://github.com/debanjum/khoj
|
||||
|
||||
# Install Telemetry Server Dependencies
|
||||
COPY requirements.txt /tmp/requirements.txt
|
||||
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
||||
|
||||
# Copy Application
|
||||
COPY telemetry.py /app/main.py
|
||||
Reference in New Issue
Block a user