Fix dockerfile

This commit is contained in:
usernames122
2025-09-14 19:34:00 +02:00
parent 33b6b85a99
commit 2333b50556

View File

@@ -7,9 +7,11 @@ RUN apt-get update && \
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/*
# Enable pip
RUN bash -c 'rm -f /usr/lib/python3*/EXTERNALLY-MANAGED'
# Upgrade pip and install Python dependencies
RUN python3 -m pip install --upgrade pip && \
python3 -m pip install boto3 pymysql
RUN python3 -m pip install boto3 pymysql
# Set working directory for Node.js app
WORKDIR /app