fix: grant write permission to openbb package dir for build lock
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Yaojia Wang
2026-03-10 00:16:12 +01:00
parent 8c682dc5dd
commit 1a0c8ea675

View File

@@ -17,7 +17,8 @@ COPY *.py ./
RUN useradd -m -s /bin/bash appuser && \
mkdir -p /home/appuser/.openbb_platform && \
chown -R appuser:appuser /home/appuser
chown -R appuser:appuser /home/appuser && \
chown -R appuser:appuser /usr/local/lib/python3.12/site-packages/openbb
EXPOSE 8000