fix: Add missing python & build tools in Dockerfile

This commit is contained in:
Glenn Y. Rolland 2021-04-10 12:33:27 +02:00
parent 11a96f1b87
commit 323c635781

View file

@ -2,7 +2,7 @@ FROM node:buster-slim
MAINTAINER Glenn ROLLAND <glenux@glenux.net>
RUN apt-get update && \
apt-get install -y make
apt-get install -y make python build-essential
COPY . /app
WORKDIR /app