mirror of
https://github.com/arthur-pbty/discord-selfbot.git
synced 2026-06-03 15:07:22 +02:00
Create Dockerfile
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
FROM node:18
|
||||
|
||||
# Définir le répertoire de travail
|
||||
WORKDIR /app
|
||||
|
||||
# Copier package.json et installer les dépendances
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
# Copier le reste des fichiers de l'application
|
||||
COPY . .
|
||||
|
||||
# Démarrer l'application
|
||||
CMD ["node", "main.js"]
|
||||
Reference in New Issue
Block a user