Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
28e99c1420 | |||
e999577bad | |||
94420c3a54 | |||
2a9136ba59 |
13
Dockerfile
13
Dockerfile
@ -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 \
|
||||||
|
@ -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
2
package-lock.json
generated
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "ht-docker-dbase",
|
"name": "ht-docker-dbase",
|
||||||
"version": "1.0.82",
|
"version": "1.0.84",
|
||||||
"lockfileVersion": 1
|
"lockfileVersion": 1
|
||||||
}
|
}
|
||||||
|
@ -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": {
|
||||||
|
Reference in New Issue
Block a user