Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
|
|
|
|
|
| 1 |
# Use a lightweight Node.js image
|
| 2 |
FROM node:18-bullseye
|
| 3 |
|
| 4 |
# Set working directory
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
-
RUN git clone https://github.com/
|
| 8 |
|
| 9 |
# Set correct permissions
|
| 10 |
RUN chmod -R 777 /app
|
|
|
|
| 1 |
+
|
| 2 |
+
|
| 3 |
# Use a lightweight Node.js image
|
| 4 |
FROM node:18-bullseye
|
| 5 |
|
| 6 |
# Set working directory
|
| 7 |
WORKDIR /app
|
| 8 |
|
| 9 |
+
RUN git clone https://github.com/yummi184/Binace-Clone.git /app
|
| 10 |
|
| 11 |
# Set correct permissions
|
| 12 |
RUN chmod -R 777 /app
|