piclist 1.8.7 → 1.8.8
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 +6 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
FROM node:lts-alpine
|
|
2
|
+
ENV TZ=Asia/Shanghai
|
|
3
|
+
RUN apk update \
|
|
4
|
+
&& apk add tzdata \
|
|
5
|
+
&& echo "${TZ}" > /etc/timezone \
|
|
6
|
+
&& ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime \
|
|
7
|
+
&& rm /var/cache/apk/*
|
|
2
8
|
RUN yarn config set network-timeout 300000 && \
|
|
3
9
|
#apk add g++ make py3-pip && \
|
|
4
10
|
#yarn global add node-gyp && \
|