Skip to content

Commit c9be4f9

Browse files
authored
fix: Dockerfile: UI assets were not imported in the correct folder (#107)
Signed-off-by: Romain Beuque <[email protected]>
1 parent e72b91e commit c9be4f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ RUN make re && \
2222
chmod +x /wait-for-it.sh
2323
WORKDIR /app
2424

25-
COPY --from=js-builder /home/node/ui/dashboard/dist/utask-ui/* /app/static/dashboard/
26-
COPY --from=js-builder /home/node/ui/editor/dist/utask-editor/* /app/static/editor/
25+
COPY --from=js-builder /home/node/ui/dashboard/dist/utask-ui/ /app/static/dashboard/
26+
COPY --from=js-builder /home/node/ui/editor/dist/utask-editor/ /app/static/editor/
2727

2828
RUN cp /go/src/github.com/ovh/utask/utask /app/utask && \
2929
chmod +x /app/utask && \

0 commit comments

Comments
 (0)