fix: added gcc to dev.Dockerfile

This commit is contained in:
Gabriel Almeida 2023-03-19 21:54:23 -03:00
commit 9840e3ff6d

View file

@ -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"