Update Dockerfile

This commit is contained in:
Joshua Schnabel
2020-04-28 23:30:40 +02:00
committed by GitHub
parent 00bd370bfc
commit ed72a42e28

View File

@ -34,7 +34,9 @@ COPY package.json .
FROM base AS build FROM base AS build
# Install Build tools # Install Build tools
RUN apt-get -y install buildtools build-base linux-headers udev python && \ RUN apt-get update && \
apt-get upgrade -y && \
apt-get -y install buildtools build-base linux-headers udev python && \
npm install --unsafe-perm --no-update-notifier --only=production && \ npm install --unsafe-perm --no-update-notifier --only=production && \
/tmp/remove_native_gpio.sh && \ /tmp/remove_native_gpio.sh && \
cp -R node_modules prod_node_modules cp -R node_modules prod_node_modules