We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bad2f3 commit ed00688Copy full SHA for ed00688
Dockerfile
@@ -6,7 +6,10 @@ WORKDIR /app
6
7
# Install system dependencies
8
RUN apt-get update && apt-get install -y --no-install-recommends \
9
- gcc libc6-dev \
+ build-essential \
10
+ python3-dev \
11
+ gcc \
12
+ g++ \
13
&& rm -rf /var/lib/apt/lists/*
14
15
# Copy only the requirements file first to leverage Docker cache
@@ -44,4 +47,4 @@ ENV PYTHONUNBUFFERED=1
44
47
EXPOSE 8000
45
48
46
49
# Run the application
-ENTRYPOINT ["python", "optillm.py"]
50
+CMD ["optillm"]
0 commit comments