Skip to content

Commit

Permalink
Create local conda-store dir for celery beat data files
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 committed Oct 19, 2024
1 parent 7d39efa commit 17eeeb6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion conda-store-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ RUN mamba create --name ${conda_env_name} \
COPY ./ /opt/conda-store-server/

USER 0:0
RUN chown -R ${user_no}:${user_no} /opt/conda-store-server/
RUN chown -R ${user_no}:${user_no} /opt/conda-store-server/ && \
mkdir -p /.local/share/conda-store && \
chown -R ${user_no}:${user_no} /.local/share/conda-store

USER ${user_no}:${user_no}

# ---------------------------------------------------------------------------------
Expand Down

0 comments on commit 17eeeb6

Please sign in to comment.