fix(core): update

This commit is contained in:
Philipp Kunz 2022-10-21 12:01:08 +02:00
parent 5a3c7369d9
commit e758a35e0a
2 changed files with 3 additions and 1 deletions

View File

@ -65,6 +65,8 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
libnss3 \
lsb-release \
xdg-utils \
# network
iputils-ping \
# chrome
&& wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \

View File

@ -3,7 +3,7 @@ LABEL author="Lossless GmbH <hello@lossless.com>"
#pnpm
ENV PNPM_HOME="/root/.local/share/pnpm/pnpm"
RUN apk add --no-cache curl && mkdir -p ${PNPM_HOME}
RUN apk add --no-cache curl iputils && 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