All checks were successful
continuous-integration/drone/push Build is passing
6 lines
208 B
Docker
6 lines
208 B
Docker
FROM node:lts-alpine AS base
|
|
ENV PNPM_HOME="/.pnpm"
|
|
ENV PATH="/.pnpm:$PATH"
|
|
RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh - &&\
|
|
apk add --no-cache openssl
|
|
USER root |