Skip to content

Commit

Permalink
Delay copy to after download
Browse files Browse the repository at this point in the history
re-add the fix from upstream
  • Loading branch information
vrsandeep committed Dec 13, 2024
1 parent d966994 commit b34804f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ FROM crystallang/crystal:1.0.0-alpine AS builder

WORKDIR /Mango

COPY . .
RUN apk add --no-cache yarn yaml-static sqlite-static libarchive-dev libarchive-static acl-static expat-static zstd-static lz4-static bzip2-static libjpeg-turbo-dev libpng-dev tiff-dev

COPY . .

RUN make static || make static

FROM library/alpine
Expand Down
8 changes: 4 additions & 4 deletions public/js/plugin-download.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ const component = () => {

return {
key: k,
type: type,
values: values,
type,
values,
};
});
},
Expand All @@ -340,8 +340,8 @@ const component = () => {
value = value ? Date.parse(value).toString() : '';
return {
key: i.getAttribute('data-filter-key'),
value: value,
type: type,
value,
type,
};
});
},
Expand Down

0 comments on commit b34804f

Please sign in to comment.