LazyBoss commited on
Commit
4497ccf
·
verified ·
1 Parent(s): 1c6575a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -2,6 +2,9 @@ FROM python:3.8-slim
2
 
3
  WORKDIR /app
4
 
 
 
 
5
  # Install system dependencies
6
  RUN apt-get update && apt-get install -y \
7
  libglib2.0-0 \
 
2
 
3
  WORKDIR /app
4
 
5
+ # Create a directory for data and set permissions
6
+ RUN mkdir -p /app/data && chmod -R 777 /app/data
7
+
8
  # Install system dependencies
9
  RUN apt-get update && apt-get install -y \
10
  libglib2.0-0 \