piclist 1.8.5 → 1.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +0 -3
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -2,9 +2,6 @@ FROM node:lts-alpine
|
|
|
2
2
|
RUN yarn config set network-timeout 300000 && \
|
|
3
3
|
#apk add g++ make py3-pip && \
|
|
4
4
|
#yarn global add node-gyp && \
|
|
5
|
-
yarn config set registry https://registry.npmmirror.com/ && \
|
|
6
|
-
yarn config set sharp_binary_host "https://npmmirror.com/mirrors/sharp" && \
|
|
7
|
-
yarn config set sharp_libvips_binary_host "https://npmmirror.com/mirrors/sharp-libvips" && \
|
|
8
5
|
yarn global add piclist && \
|
|
9
6
|
rm -rf /var/cache/apk/* /tmp/*
|
|
10
7
|
|