We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c863814 commit cfb986dCopy full SHA for cfb986d
Dockerfile
@@ -138,7 +138,9 @@ COPY widget_selection.py /opt/conda/lib/python3.11/site-packages/ipywidgets/widg
138
COPY interaction.py /opt/conda/lib/python3.11/site-packages/ipywidgets/widgets/
139
RUN chown -R jovyan:users /home/jovyan && \
140
chmod -R 0777 /home/jovyan && \
141
- rm -rf /home/jovyan/*
+ 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
144
145
USER jovyan
146
0 commit comments