Skip to content

Commit

Permalink
Unset LC_ALL to workaround R testthat warning
Browse files Browse the repository at this point in the history
  • Loading branch information
xcompass committed Jan 25, 2025
1 parent c863814 commit cfb986d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ COPY widget_selection.py /opt/conda/lib/python3.11/site-packages/ipywidgets/widg
COPY interaction.py /opt/conda/lib/python3.11/site-packages/ipywidgets/widgets/
RUN chown -R jovyan:users /home/jovyan && \
chmod -R 0777 /home/jovyan && \
rm -rf /home/jovyan/*
rm -rf /home/jovyan/* && \
# remove LC_ALL to workaround warning issue: https://github.com/r-lib/testthat/issues/1925
echo "LC_ALL=" >> /etc/environment

USER jovyan

Expand Down

0 comments on commit cfb986d

Please sign in to comment.