From aa5dc12a8a2b9deb167bd1b163b09a976f46a781 Mon Sep 17 00:00:00 2001 From: Alexandre Teles Date: Sun, 28 Aug 2022 20:51:24 -0300 Subject: [PATCH] Change gcc only to build-essential and add libffi --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 270bb52..24ed996 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /usr/src/app COPY . . RUN apt update && \ - apt-get install gcc -y && \ + apt-get install build-essential libffi-dev -y && \ pip install --no-cache-dir -r requirements.txt CMD [ "python3", "./main.py" ] \ No newline at end of file