Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
@@ -10,10 +10,11 @@ COPY .env $HOME/app/Chat_with_Avatar/.env
|
|
10 |
|
11 |
# change folder
|
12 |
WORKDIR $HOME/app/Chat_with_Avatar
|
13 |
-
RUN ls -a
|
14 |
|
15 |
-
RUN --mount=type=secret,id=
|
16 |
-
cat /run/secrets/
|
|
|
|
|
17 |
|
18 |
# Loading Dependencies
|
19 |
RUN npm install
|
|
|
10 |
|
11 |
# change folder
|
12 |
WORKDIR $HOME/app/Chat_with_Avatar
|
|
|
13 |
|
14 |
+
RUN --mount=type=secret,id=session_password,mode=0444,required=true \
|
15 |
+
cat /run/secrets/session_password > /test
|
16 |
+
|
17 |
+
RUN ls -a
|
18 |
|
19 |
# Loading Dependencies
|
20 |
RUN npm install
|