Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
whyour committed Sep 17, 2023
1 parent 34200a8 commit a43dac3
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM node:18.16-alpine
RUN set -xve \
&& cd && ls -alh \
&& uname -a \
&& node -v \
&& npm -v
FROM python:3.10-alpine as builder
COPY package.json .npmrc pnpm-lock.yaml /tmp/build/
RUN set -x \
&& apk update \
&& apk add nodejs npm git \
&& npm -v \
&& npm i -g [email protected] \
&& pnpm -v \
&& cd /tmp/build \
&& pnpm --registry https://registry.npmmirror.com install --prod

0 comments on commit a43dac3

Please sign in to comment.