@cryptotaxi247 / CoPilot / commits / f2106036

chore: Update Dockerfile to include python3-dev dependency

Taylor committed Jun 7, 2024 at 14:28 UTC f2106036bf0994dcade0a2a1927f828eb544e151
1 file changed +1 -1
backend/Dockerfile
+1 -1
@@ -23,7 +23,7 @@ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F23C5A6CF475977595C
23 RUN apt-get update
24
25 # Install Python 3.11, pip and venv
26 -RUN apt-get install -y python3.11 python3-pip python3.11-venv
26 +RUN apt-get install -y python3.11 python3-pip python3.11-venv python3-dev
27
28 # Create a Python virtual environment and activate it
29 RUN python3.11 -m venv /opt/venv