From e77389ffb544248c1bd7f92633c876e9bd239720 Mon Sep 17 00:00:00 2001 From: harry Date: Wed, 24 Apr 2024 13:47:37 +0800 Subject: [PATCH] RUN chmod 777 /MoneyPrinterTurbo --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index ebbffc7..ebb0063 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,9 @@ FROM python:3.10-slim-bullseye # Set the working directory in the container WORKDIR /MoneyPrinterTurbo +# 设置/MoneyPrinterTurbo目录权限为777 +RUN chmod 777 /MoneyPrinterTurbo + ENV PYTHONPATH="/MoneyPrinterTurbo" # Install system dependencies