From 9840e3ff6d6b924c917ffdbfb82f55479a9ca18b Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Sun, 19 Mar 2023 21:54:23 -0300 Subject: [PATCH] fix: added gcc to dev.Dockerfile --- dev.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev.Dockerfile b/dev.Dockerfile index b8a37bd4f..0f559a0cf 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -3,7 +3,7 @@ FROM python:3.10-slim WORKDIR /app # Install Poetry -RUN apt-get update && apt-get install -y curl +RUN apt-get update && apt-get install gcc curl -y RUN curl -sSL https://install.python-poetry.org | python3 - # # Add Poetry to PATH ENV PATH="${PATH}:/root/.local/bin"