fix(core): update

This commit is contained in:
Philipp Kunz 2022-10-20 13:48:44 +02:00
parent 385780e50c
commit 7ec5a147c9
2 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,5 @@
FROM node:19.0.0-alpine
LABEL author="Lossless GmbH <hello@lossless.com>"
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
#pnpm
ENV PNPM_HOME="/root/.local/share/pnpm/pnpm"

View File

@ -1,4 +1,9 @@
FROM hosttoday/ht-docker-node:alpine
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
RUN apk add --update alpine-sdk && \
apk add libffi-dev openssl-dev && \
apk add python3-dev && \