From f46b4bee999e9e242a5e02a63e847d8dafd5c1b8 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Mon, 6 Apr 2020 15:13:11 +0200 Subject: [PATCH] No curl on debian slim --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e03297..9bb98ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM debian ENV DEBIAN_FRONTEND noninteractive ENV LANG C.UTF-8 -RUN curl -sSL https://deb.nodesource.com/setup_12.x | bash - && \ - apt-get -y upgrade && \ +RUN apt-get update && apt-get -y upgrade && apt-get install curl && \ + curl -sSL https://deb.nodesource.com/setup_12.x | bash - && \ apt-get -y install python3 python3-pip locales nodejs \ python3-flask python3-flask-sqlalchemy python3-flask-httpauth python3-flaskext.wtf \ python3-pymysql python3-requests python3-bs4 python3-dotenv && \