diff --git a/Dockerfile b/Dockerfile index 717934e..a99b0a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,10 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy the current directory contents into the container at /app COPY . . +RUN chown -R 1001:1001 /app + +USER 1001 + # Make port 9080 available to the world outside this container EXPOSE 9080