Compare commits

...

8 Commits

Author SHA1 Message Date
0d9941fb09 1.0.81 2022-01-28 00:38:46 +01:00
24f7eef3af fix(core): update 2022-01-28 00:38:45 +01:00
c719f6a14b 1.0.80 2022-01-28 00:27:19 +01:00
03a3ecdf7b fix(core): update 2022-01-28 00:27:19 +01:00
4b8cbc0fba 1.0.79 2022-01-28 00:23:57 +01:00
1f0c39da64 fix(core): update 2022-01-28 00:23:57 +01:00
4e426e7bf7 1.0.78 2022-01-28 00:22:12 +01:00
bbd13b879f fix(core): update 2022-01-28 00:22:11 +01:00
4 changed files with 15 additions and 9 deletions

View File

@ -1,13 +1,13 @@
# gitzone custom # gitzone custom
image: docker:19.03.1 image: docker:20.10.8
services: services:
- docker:stable-dind - docker:stable-dind
before_script: before_script:
- apk update - apk update
- apk add --no-cache git openssl ca-certificates bash curl - apk add --no-cache git openssl ca-certificates bash curl
- apk add --no-cache make gcc g++ python linux-headers paxctl - apk add --no-cache make gcc g++ python3 py3-pip linux-headers paxctl
- apk add --no-cache libgcc libstdc++ gnupg nodejs-current nodejs-npm - apk add --no-cache libgcc libstdc++ gnupg nodejs-current npm
- update-ca-certificates - update-ca-certificates
- cp ./stack-fix.c /lib/ - cp ./stack-fix.c /lib/
- set -ex - set -ex

View File

@ -3,13 +3,16 @@ FROM docker:20.10.8
RUN apk update && apk add --no-cache \ RUN apk update && apk add --no-cache \
git \ git \
openssl \ openssl \
openssl-dev \
ca-certificates \ ca-certificates \
bash \ bash \
curl \ curl \
make \ make \
gcc \ gcc \
g++ \ g++ \
python \ python3 \
python3-dev \
py3-pip \
linux-headers \ linux-headers \
paxctl \ paxctl \
libgcc \ libgcc \
@ -18,7 +21,11 @@ RUN apk update && apk add --no-cache \
nodejs-current \ nodejs-current \
npm \ npm \
krb5-libs \ krb5-libs \
&& update-ca-certificates && update-ca-certificates \
rust \
docker-cli \
libffi-dev \
libc-dev
# Add the patch fix # Add the patch fix
COPY ./stack-fix.c /lib/ COPY ./stack-fix.c /lib/
@ -37,8 +44,7 @@ ENV LD_PRELOAD /lib/stack-fix.so
RUN npm config set unsafe-perm true RUN npm config set unsafe-perm true
ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1 ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1
RUN apk update && \ RUN apk update && \
apk add --no-cache docker-cli python3 && \ apk add --no-cache --virtual .docker-compose-deps && \
apk add --no-cache --virtual .docker-compose-deps python3-dev libffi-dev openssl-dev gcc libc-dev make && \
pip3 install docker-compose && \ pip3 install docker-compose && \
apk del .docker-compose-deps apk del .docker-compose-deps

2
package-lock.json generated
View File

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

View File

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