UNCLASSIFIED

Commit 8c09a038 authored by Matt Vasquez's avatar Matt Vasquez
Browse files

update Dockerfile

parent d82cf73f
Pipeline #273576 failed with stages
in 92 minutes and 33 seconds
...@@ -10,7 +10,8 @@ ENV USER=jovyan ...@@ -10,7 +10,8 @@ ENV USER=jovyan
COPY --chown=$USER *.whl *.tar.gz *.zip /tmp/packages/ COPY --chown=$USER *.whl *.tar.gz *.zip /tmp/packages/
RUN dnf install -y hostname xz-devel make gcc gcc-c++ openssl-devel bzip2-devel libffi-devel sqlite-devel && \ RUN dnf upgrade -y && \
dnf install -y hostname xz-devel make gcc gcc-c++ openssl-devel bzip2-devel libffi-devel sqlite-devel && \
rm /usr/bin/python3 && \ rm /usr/bin/python3 && \
cd /opt/Python-"$(python --version | awk '{print $2}')" && \ cd /opt/Python-"$(python --version | awk '{print $2}')" && \
./configure --enable-optimizations && \ ./configure --enable-optimizations && \
...@@ -63,3 +64,5 @@ RUN rm -f /home/jovyan/.cache/pypoetry/virtualenvs/jaic-df-qX42fgRL-py3.8/lib/py ...@@ -63,3 +64,5 @@ RUN rm -f /home/jovyan/.cache/pypoetry/virtualenvs/jaic-df-qX42fgRL-py3.8/lib/py
rm -rf /tmp/* /tmp/packages/ /opt/jupyter/*.whl /opt/jupyter/*.tar.gz rm -rf /tmp/* /tmp/packages/ /opt/jupyter/*.whl /opt/jupyter/*.tar.gz
USER ${USER} USER ${USER}
HEALTHCHECK CMD pgrep "jupyter" > /dev/null || exit 1
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment