Fix npm-dev Dockerfile add python installation

This commit is contained in:
Reckless_Satoshi 2023-05-11 16:00:53 -07:00
parent 2092a33f88
commit 0048f396a7
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

@ -5,6 +5,10 @@ RUN mkdir -p /usr/src/frontend
# specifying the working dir inside the container
WORKDIR /usr/src/frontend
RUN apt-get update && \
apt-get install -y python3 \
build-essential
# copy current workdir
COPY package.json package.json
COPY package-lock.json package-lock.json