@cryptotaxi247 / CoPilot / commits / d8cfb764

refactor: Set environment variable for pure-Python implementation of protocol buffers (#291)

taylor_socfortress committed Sep 12, 2024 at 11:44 UTC d8cfb76466a5bce86f13026f0880a12d9e5e11df
1 file changed +2
backend/Dockerfile
+2
@@ -3,6 +3,8 @@ FROM debian:11
3 # Set environment variables
4 ENV PYTHONDONTWRITEBYTECODE 1
5 ENV PYTHONUNBUFFERED 1
6 +# Set environment variable to use pure-Python implementation
7 +ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
8
9 # Update the package lists
10 RUN apt-get update