fix container build deps for python mysql client, related to #72

pull/125/head
meeb 2021-04-05 00:31:50 +10:00
parent 694ed5c581
commit 721399f665
1 changed files with 3 additions and 2 deletions

View File

@ -57,9 +57,10 @@ WORKDIR /app
# Set up the app
RUN set -x && \
apt-get update && \
# Install required distro packages
apt-get -y install nginx-light && \
apt-get -y --no-install-recommends install python3 python3-setuptools python3-pip python3-dev gcc make && \
apt-get -y --no-install-recommends install python3 python3-setuptools python3-pip python3-dev gcc make default-libmysqlclient-dev && \
# Install pipenv
pip3 --disable-pip-version-check install pipenv && \
# Create a 'app' user which the application will run as
@ -82,7 +83,7 @@ RUN set -x && \
rm /app/Pipfile.lock && \
pipenv --clear && \
pip3 --disable-pip-version-check uninstall -y pipenv wheel virtualenv && \
apt-get -y autoremove --purge python3-pip python3-dev gcc make && \
apt-get -y autoremove --purge python3-pip python3-dev gcc make default-libmysqlclient-dev && \
apt-get -y autoremove && \
apt-get -y autoclean && \
rm -rf /var/lib/apt/lists/* && \