We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80100c3 commit 139ea9bCopy full SHA for 139ea9b
Dockerfile
@@ -0,0 +1,14 @@
1
+FROM node:latest
2
+
3
+RUN mkdir -p /app/Byte
4
5
+WORKDIR /app/Byte
6
7
+COPY . .
8
9
+# Clear old node_modules if it exists and re-install dependencies
10
+RUN rm -rf node_modules
11
+RUN npm install
12
13
+# Start the bot
14
+CMD ["npm", "start"]
docker-compose.yml
@@ -0,0 +1,7 @@
+version: "3.9"
+services:
+ web:
+ build: .
+ ports:
+ - "80:80"
0 commit comments