Jeff Brainerd
03/11/2020, 3:14 PMChris White
We got this to work by setting chmod for group 0 on /.prefect and /root/.prefect/flows directoriesWe can re-prioritize the issue for you as well 👍
Jeff Brainerd
03/11/2020, 4:03 PMScott Zelenka
03/13/2020, 2:35 PMARG PREFECT_VERSION
ARG PYTHON_VERSION
FROM prefecthq/prefect:${PREFECT_VERSION}-python${PYTHON_VERSION}
#=====
# setup /etc/passwd for 'root' group access
#=====
RUN mkdir -p /.prefect /root/.prefect/flows \
&& chgrp -R 0 \
/etc/passwd \
/run \
/.prefect \
/root/.prefect \
&& chmod -R g+rwX \
/etc/passwd \
/run \
/.prefect \
/root/.prefect \
&& chmod 770 \
/etc/passwd
Jeff Brainerd
03/13/2020, 2:58 PM