Skip to content

Commit f848ac4

Browse files
author
arthosofteq
authored
Merge pull request #121 from RedisInsight/bug/fix-dockerfile-copy-resources
fix resources paths
2 parents 4e92057 + 07b7e09 commit f848ac4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ WORKDIR /usr/src/app
1818
COPY redisinsight/api/package.json redisinsight/api/yarn.lock ./
1919
RUN yarn install
2020
COPY redisinsight/api ./
21-
COPY --from=front /usr/src/app/redisinsight/api/src/static ./src/static
21+
COPY --from=front /usr/src/app/redisinsight/api/static ./static
22+
COPY --from=front /usr/src/app/redisinsight/api/defaults ./defaults
2223
RUN yarn run build:prod
2324

2425
FROM node:14.17-slim

0 commit comments

Comments
 (0)