Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -13,6 +13,9 @@ RUN npm install --save express ws
|
|
13 |
# Copy the rest of the application files
|
14 |
COPY . .
|
15 |
|
|
|
|
|
|
|
16 |
# Expose the WebSocket port
|
17 |
EXPOSE 7860
|
18 |
|
|
|
13 |
# Copy the rest of the application files
|
14 |
COPY . .
|
15 |
|
16 |
+
# Set permissions for the working directory
|
17 |
+
RUN chmod -R 777 /usr/src/app
|
18 |
+
|
19 |
# Expose the WebSocket port
|
20 |
EXPOSE 7860
|
21 |
|