Skip to content

Commit cfb986d

Browse files
committed
Unset LC_ALL to workaround R testthat warning
1 parent c863814 commit cfb986d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ COPY widget_selection.py /opt/conda/lib/python3.11/site-packages/ipywidgets/widg
138138
COPY interaction.py /opt/conda/lib/python3.11/site-packages/ipywidgets/widgets/
139139
RUN chown -R jovyan:users /home/jovyan && \
140140
chmod -R 0777 /home/jovyan && \
141-
rm -rf /home/jovyan/*
141+
rm -rf /home/jovyan/* && \
142+
# remove LC_ALL to workaround warning issue: https://github.com/r-lib/testthat/issues/1925
143+
echo "LC_ALL=" >> /etc/environment
142144

143145
USER jovyan
144146

0 commit comments

Comments
 (0)