Compare commits

...

4 Commits

Author SHA1 Message Date
28e99c1420 1.0.84 2022-10-17 12:18:06 +02:00
e999577bad fix(core): update 2022-10-17 12:18:05 +02:00
94420c3a54 1.0.83 2022-10-17 11:52:12 +02:00
2a9136ba59 fix(core): update 2022-10-17 11:52:12 +02:00
4 changed files with 16 additions and 3 deletions

View File

@ -28,11 +28,24 @@ RUN apk update && apk add --no-cache \
libc-dev \ libc-dev \
docker-compose docker-compose
RUN apk update && apk add bash libc6-compat alpine-sdk
ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python
RUN python3 -m ensurepip
RUN pip3 install --no-cache --upgrade pip setuptools
# Add the patch fix # Add the patch fix
COPY ./stack-fix.c /lib/ COPY ./stack-fix.c /lib/
RUN node -v && npm -v RUN node -v && npm -v
#pnpm
ENV PNPM_HOME="/root/.local/share/pnpm/pnpm"
RUN mkdir -p ${PNPM_HOME}
ENV PATH="$PNPM_HOME:$PATH"
RUN curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -o /bin/pnpm; chmod +x /bin/pnpm;
RUN pnpm -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 \

View File

@ -1,2 +1,2 @@
FROM hosttoday/ht-docker-dbase:latest FROM hosttoday/ht-docker-dbase:latest
RUN npm install -g @shipzone/npmci RUN pnpm install -g @shipzone/npmci

2
package-lock.json generated
View File

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

View File

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