Loading Dockerfile +2 −2 Original line number Diff line number Diff line Loading @@ -20,7 +20,7 @@ FROM python:3.12-slim WORKDIR /app # Install system dependencies RUN apt-get update -qq && \ RUN apt-get update -y -qq && \ apt-get install -y -qq git python3-dev && \ apt-get clean && rm -rf /var/lib/apt/lists/* Loading @@ -32,7 +32,7 @@ RUN pip install --upgrade pip && \ pip install -r requirements.txt # Expose port EXPOSE 8081 EXPOSE 8085 # Init command ENTRYPOINT ["python3", "app.py"] deploy.sh 100644 → 100755 +0 −0 File mode changed from 100644 to 100755. View file Loading
Dockerfile +2 −2 Original line number Diff line number Diff line Loading @@ -20,7 +20,7 @@ FROM python:3.12-slim WORKDIR /app # Install system dependencies RUN apt-get update -qq && \ RUN apt-get update -y -qq && \ apt-get install -y -qq git python3-dev && \ apt-get clean && rm -rf /var/lib/apt/lists/* Loading @@ -32,7 +32,7 @@ RUN pip install --upgrade pip && \ pip install -r requirements.txt # Expose port EXPOSE 8081 EXPOSE 8085 # Init command ENTRYPOINT ["python3", "app.py"]