From 1ffa3cd0467e345c8dcc96c9b38a6610b1528acd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Wed, 12 Jun 2019 23:55:42 +0200 Subject: [PATCH] Fix #799 For target `production` the badges were simply not copied. It also explains why we never saw that error in development. For development we use docker build target `build-and-test`. FYI: @ulfgebhardt @Tirokk @ogerly --- backend/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index d24f2747e..f0251bddc 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -24,4 +24,5 @@ RUN yarn run build FROM base as production ENV NODE_ENV=production COPY --from=builder /nitro-backend/dist ./dist +COPY ./public/img/ ./public/img/ RUN yarn install --frozen-lockfile --non-interactive