Change gcc only to build-essential and add libffi

This commit is contained in:
Alexandre Teles 2022-08-28 20:51:24 -03:00
parent 6f2f16ab59
commit aa5dc12a8a

View File

@ -8,7 +8,7 @@ WORKDIR /usr/src/app
COPY . . COPY . .
RUN apt update && \ RUN apt update && \
apt-get install gcc -y && \ apt-get install build-essential libffi-dev -y && \
pip install --no-cache-dir -r requirements.txt pip install --no-cache-dir -r requirements.txt
CMD [ "python3", "./main.py" ] CMD [ "python3", "./main.py" ]