DeeCeeXxx commited on
Commit
0d0ad8f
·
verified ·
1 Parent(s): a0ad61f

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -25
Dockerfile DELETED
@@ -1,25 +0,0 @@
1
- # Use the official Node.js image
2
- FROM node:18-alpine
3
-
4
- RUN gitclone https://github.com/DCTECH02/Queen_Anita-V7
5
-
6
- # Set the working directory
7
- WORKDIR /usr/src/app
8
-
9
- # Copy package.json and package-lock.json
10
- COPY package*.json ./
11
-
12
- # Install dependencies
13
- RUN npm install
14
-
15
- # Copy the rest of the project files
16
- COPY . .
17
-
18
- # Build TypeScript files
19
- RUN npm run build
20
-
21
- # Expose a port (optional, only needed if your bot listens to HTTP)
22
- # EXPOSE 3000
23
-
24
- # Start the bot
25
- CMD ["npm", "start"]