From 9f7e4d3341f2e6efa70f698240b54cdf2ef9aefb Mon Sep 17 00:00:00 2001 From: menduz Date: Thu, 9 Nov 2023 09:16:37 -0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2e6dd7a..81cfe82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,7 @@ FROM node:lts as builderenv WORKDIR /app # some packages require a build step -RUN apt-get update -RUN apt-get -y -qq install python-setuptools python-dev build-essential +RUN apt-get update && apt-get -y -qq install build-essential # We use Tini to handle signals and PID1 (https://github.com/krallin/tini, read why here https://github.com/krallin/tini/issues/8) ENV TINI_VERSION v0.19.0