Skip to content

Commit a6fc580

Browse files
committed
add python to docker build
1 parent 985f647 commit a6fc580

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# use older node version for build since arm/v8 threw error when node 20 was used
22
FROM node:18.19.1-alpine AS build_image
33

4+
# install additional tools needed if on arm64 / armv7
5+
RUN RUN apk add --update python3 make g++\
6+
&& rm -rf /var/cache/apk/*
7+
8+
49
# use production node environment by default
510
ENV NODE_ENV=production
611

0 commit comments

Comments
 (0)