We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3977f63 commit 7c8b0b5Copy full SHA for 7c8b0b5
Dockerfile
@@ -19,13 +19,13 @@ RUN mv dist/fs.cjs ./ && \
19
FROM ubuntu:noble as fs
20
WORKDIR /root/fs
21
COPY --from=sssomeshhh/rentify:be /root/be/fs .
22
-COPY --from=sssomeshhh/rentify:fe /root/fe/build ./fe
23
-ENV NODE_NO_WARNINGS=1 IS_EVAL=true SERVER_PORT=80
+COPY --from=sssomeshhh/rentify:fe /root/fe/build ./static
+ENV NODE_NO_WARNINGS=1 IS_EVAL=true SERVER_PORT=80 STATIC_DIR=/root/fs/static
24
CMD ./fs
25
26
FROM mongo:latest as rn
27
WORKDIR /root/rn
28
COPY --from=sssomeshhh/rentify:fs /root/fs .
29
+ENV NODE_NO_WARNINGS=1 IS_EVAL=true SERVER_PORT=80 STATIC_DIR=/root/rn/static
30
RUN echo "mongod > /dev/null 2>&1 & disown ; ./fs ;" > stRn
31
CMD bash ./stRn
0 commit comments