Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
6c255d39f1 | |||
259195d267 | |||
3395159064 | |||
7ce81d1a7c | |||
96c116b0b5 | |||
b8a643d174 | |||
a8f42b0ac3 | |||
09470996d4 | |||
8378ffb419 | |||
01dc4c19a8 | |||
32eccccf22 | |||
0188f92f4b | |||
f00c0dd88d | |||
62d1938c89 |
@ -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
2
package-lock.json
generated
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "ht-docker-dbase",
|
"name": "ht-docker-dbase",
|
||||||
"version": "1.0.36",
|
"version": "1.0.43",
|
||||||
"lockfileVersion": 1
|
"lockfileVersion": 1
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ht-docker-dbase",
|
"name": "ht-docker-dbase",
|
||||||
"version": "1.0.36",
|
"version": "1.0.43",
|
||||||
"description": "easy CI for docker images",
|
"description": "easy CI for docker images",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
@ -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, 2 * 1024 * 1024); // 2 MB
|
||||||
|
|
||||||
func_t orig = (func_t)dlsym(RTLD_NEXT, "pthread_create");
|
func_t orig = (func_t)dlsym(RTLD_NEXT, "pthread_create");
|
||||||
|
|
||||||
|
@ -1,3 +1,2 @@
|
|||||||
yarn --version
|
|
||||||
npm --version
|
npm --version
|
||||||
node --version
|
node --version
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
node -v
|
node -v
|
||||||
npm -v
|
npm -v
|
||||||
yarn --version
|
npm init --yes
|
||||||
npmci -v
|
npmci -v
|
||||||
git clone https://gitlab.com/sandboxzone/sandbox-npmts.git
|
|
Reference in New Issue
Block a user