Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -10,6 +10,9 @@ RUN git clone https://github.com/jokyo02/clivpn .
|
|
| 10 |
# Install the dependencies
|
| 11 |
RUN npm install
|
| 12 |
RUN npm ls miniflare
|
|
|
|
|
|
|
|
|
|
| 13 |
RUN ls -al ./node_modules/miniflare/dist/src
|
| 14 |
RUN chmod 777 ./node_modules
|
| 15 |
# Expose the port that your application is listening on
|
|
|
|
| 10 |
# Install the dependencies
|
| 11 |
RUN npm install
|
| 12 |
RUN npm ls miniflare
|
| 13 |
+
# Install the missing cloudflare:sockets module
|
| 14 |
+
RUN npm install cloudflare:sockets
|
| 15 |
+
|
| 16 |
RUN ls -al ./node_modules/miniflare/dist/src
|
| 17 |
RUN chmod 777 ./node_modules
|
| 18 |
# Expose the port that your application is listening on
|