luciferai-devil commited on
Commit
cb83ebc
·
verified ·
1 Parent(s): e6ee03b

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. Dockerfile +3 -3
  2. server/requirements.txt +1 -0
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
- # Dockerfile — builds from openenv-base, MUST use this base image
2
- ARG BASE_IMAGE=openenv-base:latest
3
- FROM ${BASE_IMAGE}
4
 
5
  WORKDIR /app
6
 
 
1
+ FROM python:3.11-slim
2
+
3
+ RUN apt-get update && apt-get install -y git curl && rm -rf /var/lib/apt/lists/*
4
 
5
  WORKDIR /app
6
 
server/requirements.txt CHANGED
@@ -1,3 +1,4 @@
 
1
  fastapi>=0.110.0
2
  uvicorn[standard]>=0.27.0
3
  pydantic>=2.0.0
 
1
+ openenv-core>=0.2.0
2
  fastapi>=0.110.0
3
  uvicorn[standard]>=0.27.0
4
  pydantic>=2.0.0