Skip to content

Commit

Permalink
Release dpt-prefect-cleanup-runtime v0.0.5
Browse files Browse the repository at this point in the history
Fix permissions for OpenShift
  • Loading branch information
olivergoetze committed Sep 17, 2024
1 parent 4796e33 commit fa410cf
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,15 @@ FROM prefecthq/prefect:3.0.1-python3.11
RUN pip install s3fs prefect-dask

# base Python dependencies
RUN pip install python-dotenv typesense
RUN pip install python-dotenv typesense

RUN mkdir /opt/dptweb_padding_dir

RUN mkdir /.prefect
RUN chgrp -R 0 /.prefect && \
chmod -R g=u /.prefect

RUN chgrp -R 0 /opt && \
chmod -R g=u /opt

USER 1001

0 comments on commit fa410cf

Please sign in to comment.