samithcs commited on
Commit
7dcb915
·
verified ·
1 Parent(s): 1eaee2c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -4,6 +4,13 @@ FROM python:3.11-slim
4
  # ---- Working directory ----
5
  WORKDIR /app
6
 
 
 
 
 
 
 
 
7
  # ---- Copy requirements first for efficient caching ----
8
  COPY requirements.txt .
9
 
 
4
  # ---- Working directory ----
5
  WORKDIR /app
6
 
7
+ # Copy files
8
+ COPY . /app
9
+
10
+ # Give permissions
11
+ RUN mkdir -p /app/.files && chmod -R 777 /app
12
+
13
+
14
  # ---- Copy requirements first for efficient caching ----
15
  COPY requirements.txt .
16