Compare commits

...

33 Commits

Author SHA1 Message Date
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
1f12882f03 1.0.77 2022-01-28 00:21:21 +01:00
e4aed1d051 fix(core): update 2022-01-28 00:21:20 +01:00
3bba9c114b 1.0.76 2022-01-28 00:16:52 +01:00
ee1769f6aa fix(core): update 2022-01-28 00:16:52 +01:00
7b79104520 1.0.75 2022-01-28 00:07:13 +01:00
ee8ad96796 1.0.74 2021-02-27 01:35:00 +00:00
15e001b126 fix(core): update 2021-02-27 01:34:59 +00:00
8d6415f5d0 1.0.73 2021-02-27 01:31:56 +00:00
50845053ad fix(core): update 2021-02-27 01:31:55 +00:00
2ff559917d 1.0.72 2021-02-27 01:14:08 +00:00
cf21b33831 fix(core): update 2021-02-27 01:14:08 +00:00
c2a493ae5a 1.0.71 2021-02-27 01:12:35 +00:00
eef4ab8ca3 fix(core): update 2021-02-27 01:12:35 +00:00
01ac9b637d 1.0.70 2021-02-27 01:05:52 +00:00
181d0ff6d7 fix(core): update 2021-02-27 01:05:51 +00:00
0d06199c58 1.0.69 2021-02-27 00:58:20 +00:00
7aa27daebc fix(core): update 2021-02-27 00:58:20 +00:00
6671bdd6a6 1.0.68 2021-02-27 00:52:59 +00:00
36d3466a48 fix(core): update 2021-02-27 00:52:58 +00:00
62b9a1574d 1.0.67 2021-02-27 00:47:34 +00:00
617c9f993f fix(core): update 2021-02-27 00:47:34 +00:00
6f91132d22 1.0.66 2021-02-27 00:40:24 +00:00
e4d88c1732 fix(core): update 2021-02-27 00:40:24 +00:00
f5cc4d4339 1.0.65 2021-02-27 00:36:58 +00:00
665c7aaada fix(core): update 2021-02-27 00:36:58 +00:00
a47ab357f7 1.0.64 2021-02-27 00:32:19 +00:00
a8a72799b5 fix(core): update 2021-02-27 00:32:18 +00:00
4 changed files with 18 additions and 8 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

@ -1,4 +1,4 @@
FROM docker:19.03.1 FROM docker:20.10.8
RUN apk update && apk add --no-cache \ RUN apk update && apk add --no-cache \
git \ git \
@ -9,20 +9,23 @@ RUN apk update && apk add --no-cache \
make \ make \
gcc \ gcc \
g++ \ g++ \
python \ python3 \
py3-pip \
linux-headers \ linux-headers \
paxctl \ paxctl \
libgcc \ libgcc \
libstdc++ \ libstdc++ \
gnupg \ gnupg \
nodejs-current \ nodejs-current \
nodejs-npm \ npm \
krb5-libs \ krb5-libs \
&& update-ca-certificates && update-ca-certificates
# Add the patch fix # Add the patch fix
COPY ./stack-fix.c /lib/ COPY ./stack-fix.c /lib/
RUN node -v && npm -v
# Prepare the libraries packages # Prepare the libraries packages
RUN set -ex \ RUN set -ex \
&& apk add --no-cache --virtual .build-deps build-base \ && apk add --no-cache --virtual .build-deps build-base \
@ -33,3 +36,10 @@ RUN set -ex \
ENV LD_PRELOAD /lib/stack-fix.so 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
RUN apk update && \
apk add --no-cache docker-cli python3 && \
apk add --no-cache --virtual .docker-compose-deps python3-dev libffi-dev openssl-dev gcc libc-dev make && \
pip3 install docker-compose && \
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.63", "version": "1.0.80",
"lockfileVersion": 1 "lockfileVersion": 1
} }

View File

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