fix: fix compile messages error

ModuleNotFoundError: No module named '_sqlite3'
fixed above error on line
>>> RUN python manage.py compilemessages
This commit is contained in:
Muhammad Faraz Maqsood 2024-03-18 12:09:06 +05:00 committed by Muhammad Faraz Maqsood
parent 2f9effded9
commit d27b7523e1

View File

@ -8,7 +8,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
apt update && \
apt install -y curl git-core gettext language-pack-en \
build-essential libcairo2 libffi-dev libmysqlclient-dev libxml2-dev libxslt-dev libjpeg-dev libssl-dev \
pkg-config
pkg-config libsqlite3-dev
ENV LC_ALL en_US.UTF-8
ARG APP_USER_ID=1000