We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 178c0e5 commit cd41cedCopy full SHA for cd41ced
Dockerfile
@@ -8,8 +8,9 @@ RUN apt-get -y update
8
RUN apt-get -y install vim
9
RUN apt-get -y install python3.11-dev python3.11-venv python3-pip
10
RUN update-alternatives --install /usr/bin/python3 python /usr/bin/python3.11 1
11
-RUN api-get -y install pkg-config
12
-RUN apt-get -y install libmysqlclient-dev default-libmysqlclient-dev
+RUN apt-get update \
+ && apt-get install -y gcc default-libmysqlclient-dev pkg-config \
13
+ && rm -rf /var/lib/apt/lists/*
14
15
16
RUN useradd -b /home -m -s /bin/bash django
0 commit comments