add python3 to the Docker build environment
This commit is contained in:
parent
cb636d0201
commit
f532d39e5a
|
|
@ -4,9 +4,10 @@ FROM node:16-alpine3.13 AS base
|
||||||
FROM base AS builder
|
FROM base AS builder
|
||||||
MAINTAINER Jesse McDonald <nybble41@gmail.com>
|
MAINTAINER Jesse McDonald <nybble41@gmail.com>
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN apk add --no-cache python2 make gcc g++ musl-dev
|
RUN apk add --no-cache python2 python3 make gcc g++ musl-dev
|
||||||
COPY . .
|
COPY ["package.json", "package-lock.json*", "."]
|
||||||
RUN yarn install --production
|
RUN yarn install --production
|
||||||
|
COPY . .
|
||||||
|
|
||||||
FROM base
|
FROM base
|
||||||
MAINTAINER Jesse McDonald <nybble41@gmail.com>
|
MAINTAINER Jesse McDonald <nybble41@gmail.com>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue