Sebebeb commited on
Commit
c8000c1
·
verified ·
1 Parent(s): 8c634f6

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -20
Dockerfile DELETED
@@ -1,20 +0,0 @@
1
- # Use official Node.js image
2
- FROM node:18
3
-
4
- # Set working directory
5
- WORKDIR /app
6
-
7
- # Copy package files first (better caching)
8
- COPY package*.json ./
9
-
10
- # Install dependencies
11
- RUN npm install
12
-
13
- # Copy the rest of the project
14
- COPY . .
15
-
16
- # Hugging Face Spaces expects port 7860
17
- EXPOSE 7860
18
-
19
- # Run the app
20
- CMD ["node", "app.js"]