feature: install npm in node image

This commit is contained in:
winkidney
2022-04-25 21:21:52 -07:00
parent 2e93da1adf
commit 3eda66a7d7

View File

@@ -11,11 +11,11 @@
# -----------------------------------------------------------------------------
# Build static yarn file
FROM node:14-buster as yarn-build
FROM node:16-buster as yarn-build
WORKDIR pinry-spa
COPY pinry-spa/package.json pinry-spa/yarn.lock ./
RUN yarn install
RUN yarn install
COPY pinry-spa .
RUN yarn build