Spaces:
Running
Running
davidgasquez
commited on
Commit
β’
958326b
1
Parent(s):
c130341
chore: π§ create data directory with appropriate permissions
Browse filesAdd creation and ownership change for /data directory to ensure proper setup for application data handling.
- 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" ]
|