Skip to content

Commit ed00688

Browse files
committed
Update Dockerfile
1 parent 3bad2f3 commit ed00688

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ WORKDIR /app
66

77
# Install system dependencies
88
RUN apt-get update && apt-get install -y --no-install-recommends \
9-
gcc libc6-dev \
9+
build-essential \
10+
python3-dev \
11+
gcc \
12+
g++ \
1013
&& rm -rf /var/lib/apt/lists/*
1114

1215
# Copy only the requirements file first to leverage Docker cache
@@ -44,4 +47,4 @@ ENV PYTHONUNBUFFERED=1
4447
EXPOSE 8000
4548

4649
# Run the application
47-
ENTRYPOINT ["python", "optillm.py"]
50+
CMD ["optillm"]

0 commit comments

Comments
 (0)