mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-09 08:00:04 +00:00
Pin to node:14, install python3
- node:16 is not compatible to several packages - python package was removed from alpine Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
bd2cb2705e
commit
d9cd13abc7
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM node:alpine as node_builder
|
FROM node:14-alpine as node_builder
|
||||||
|
|
||||||
COPY . /src/mondash
|
COPY . /src/mondash
|
||||||
WORKDIR /src/mondash/src
|
WORKDIR /src/mondash/src
|
||||||
|
@ -6,7 +6,7 @@ WORKDIR /src/mondash/src
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& apk --no-cache add \
|
&& apk --no-cache add \
|
||||||
build-base \
|
build-base \
|
||||||
python \
|
python3 \
|
||||||
&& npm ci \
|
&& npm ci \
|
||||||
&& npm run build
|
&& npm run build
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue