Skip to content

Commit

Permalink
Modify Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
imhlas committed Apr 3, 2024
1 parent 61855a9 commit a09e056
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ WORKDIR /app
COPY requirements.txt ./
RUN pip install -r requirements.txt

# Create data directories
RUN mkdir -p /app/data
# Create data directories and set permissions
RUN mkdir /data && chgrp -R 0 /data && chmod -R g=u /data

# Copy the rest of the project files to the working directory
COPY . .
Expand Down

0 comments on commit a09e056

Please sign in to comment.