davidgasquez commited on
Commit
958326b
β€’
1 Parent(s): c130341

chore: πŸ”§ create data directory with appropriate permissions

Browse files

Add creation and ownership change for /data directory to ensure proper setup for application data handling.

Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -11,6 +11,8 @@ COPY --chown=user datalia/ $HOME/app/datalia/
11
  COPY --chown=user dbt/ $HOME/app/dbt/
12
  COPY --chown=user Makefile pyproject.toml uv.lock $HOME/app/
13
 
 
 
14
  WORKDIR $HOME/app
15
 
16
  RUN [ "uv", "sync" ]
 
11
  COPY --chown=user dbt/ $HOME/app/dbt/
12
  COPY --chown=user Makefile pyproject.toml uv.lock $HOME/app/
13
 
14
+ RUN mkdir -p $HOME/app/data && chown -R user:user $HOME/app/data
15
+
16
  WORKDIR $HOME/app
17
 
18
  RUN [ "uv", "sync" ]