zhlajiex smith commited on
Commit
dbd8800
·
verified ·
1 Parent(s): ec9e4a6

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -23
Dockerfile DELETED
@@ -1,23 +0,0 @@
1
- cat <<EOF > Dockerfile
2
- # Use Node.js 22 (Standard for 2026)
3
- FROM node:22
4
-
5
- # Set working directory
6
- WORKDIR /app
7
-
8
- # Copy all your files
9
- COPY . .
10
-
11
- # Install Backend dependencies
12
- RUN cd backend && npm install
13
-
14
- # Build Frontend (if you use Vite/React)
15
- RUN cd frontend && npm install && npm run build
16
-
17
- # Hugging Face MUST use port 7860
18
- EXPOSE 7860
19
-
20
- # Start the application
21
- # Change 'backend/index.js' to whatever your main file is named
22
- CMD ["node", "backend/server.js"]
23
- EOF