From 9e9b401c538e81a9f227ea94e16507313516264b Mon Sep 17 00:00:00 2001 From: menduz Date: Thu, 9 Nov 2023 09:17:44 -0300 Subject: [PATCH] Update Dockerfile (#269) --- 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