ITSAIDI commited on
Commit
819b432
·
1 Parent(s): 3f08798

add Dockerfile and uv config file

Browse files
Files changed (3) hide show
  1. Dockerfile +7 -0
  2. README.md +2 -2
  3. pyproject.toml +11 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ # For Dev mode in Spaces, we need to create a new user with id 1000.
4
+ # useradd is a Linux command
5
+ RUN useradd -m -u 1000 user
6
+
7
+ WORKDIR /firstMcpServer
README.md CHANGED
@@ -1,7 +1,7 @@
1
  ---
2
  title: First MCP
3
- emoji: 📊
4
- colorFrom: red
5
  colorTo: pink
6
  sdk: docker
7
  pinned: false
 
1
  ---
2
  title: First MCP
3
+ emoji: 🐳
4
+ colorFrom: blue
5
  colorTo: pink
6
  sdk: docker
7
  pinned: false
pyproject.toml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "mcp-hipe"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ dependencies = [
8
+ "huggingface-hub>=0.35.3",
9
+ "mcp[cli]>=1.14.0",
10
+ "requests>=2.32.5",
11
+ ]