diff --git a/Dockerfile b/Dockerfile index 825d3df..f30cba8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,11 @@ WORKDIR /app COPY . /app +RUN apt-get update && \ + apt-get install -y curl gnupg && \ + curl -sL https://deb.nodesource.com/setup_16.x | bash - && \ + apt-get install -y nodejs + RUN pip install --no-cache-dir -r requirements.txt RUN apt-get update && \