Spaces:
Sleeping
Sleeping
Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
|
@@ -16,6 +16,12 @@ RUN pip install --no-cache-dir \
|
|
| 16 |
# Copy all project files
|
| 17 |
COPY . .
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
# Expose port
|
| 20 |
EXPOSE 7860
|
| 21 |
|
|
|
|
| 16 |
# Copy all project files
|
| 17 |
COPY . .
|
| 18 |
|
| 19 |
+
# Environment variables judges will set
|
| 20 |
+
ENV API_BASE_URL=https://api.openai.com/v1
|
| 21 |
+
ENV MODEL_NAME=gpt-4o-mini
|
| 22 |
+
ENV HF_TOKEN=""
|
| 23 |
+
ENV OPENAI_API_KEY=""
|
| 24 |
+
|
| 25 |
# Expose port
|
| 26 |
EXPOSE 7860
|
| 27 |
|