Compare commits

...

8 Commits

Author SHA1 Message Date
a8f42b0ac3 1.0.40 2019-11-23 22:09:17 +00:00
09470996d4 fix(core): update 2019-11-23 22:09:16 +00:00
8378ffb419 1.0.39 2019-11-23 22:03:13 +00:00
01dc4c19a8 fix(core): update 2019-11-23 22:03:12 +00:00
32eccccf22 1.0.38 2019-11-23 21:58:51 +00:00
0188f92f4b fix(core): update 2019-11-23 21:58:51 +00:00
f00c0dd88d 1.0.37 2019-11-23 21:58:14 +00:00
62d1938c89 fix(core): update 2019-11-23 21:58:13 +00:00
6 changed files with 5 additions and 7 deletions

View File

@ -17,10 +17,11 @@ RUN apk update && apk add --no-cache \
gnupg \ gnupg \
nodejs \ nodejs \
nodejs-npm \ nodejs-npm \
krb5-libs \
&& update-ca-certificates && update-ca-certificates
# Add the patch fix # Add the patch fix
COPY common/stack-fix.c /lib/ COPY ./stack-fix.c /lib/
# Prepare the libraries packages # Prepare the libraries packages
RUN set -ex \ RUN set -ex \

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{ {
"name": "ht-docker-dbase", "name": "ht-docker-dbase",
"version": "1.0.36", "version": "1.0.40",
"lockfileVersion": 1 "lockfileVersion": 1
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "ht-docker-dbase", "name": "ht-docker-dbase",
"version": "1.0.36", "version": "1.0.40",
"description": "easy CI for docker images", "description": "easy CI for docker images",
"main": "index.js", "main": "index.js",
"directories": { "directories": {

View File

@ -18,7 +18,7 @@ int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_
pthread_attr_init(&local); pthread_attr_init(&local);
attr = &local; attr = &local;
} }
pthread_attr_setstacksize((void*)attr, 10 * 1024 * 1024); // 2 MB pthread_attr_setstacksize((void*)attr, 100 * 1024 * 1024); // 2 MB
func_t orig = (func_t)dlsym(RTLD_NEXT, "pthread_create"); func_t orig = (func_t)dlsym(RTLD_NEXT, "pthread_create");

View File

@ -1,3 +1,2 @@
yarn --version
npm --version npm --version
node --version node --version

View File

@ -1,5 +1,3 @@
node -v node -v
npm -v npm -v
yarn --version
npmci -v npmci -v
git clone https://gitlab.com/sandboxzone/sandbox-npmts.git