Skip to content
Snippets Groups Projects
Commit e102af52 authored by Birhanu Belay's avatar Birhanu Belay
Browse files

Add new file

parent 31d0d71b
No related branches found
No related tags found
No related merge requests found
Pipeline #12549 failed with stage
in 1 minute and 50 seconds
FROM python:3.10.8
WORKDIR /home/pandas
RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y build-essential bash-completion
# hdf5 needed for pytables installation
# libgles2-mesa needed for pytest-qt
RUN apt-get install -y libhdf5-dev libgles2-mesa-dev
RUN python -m pip install --upgrade pip
COPY requirements-dev.txt /tmp
RUN python -m pip install -r /tmp/requirements-dev.txt
RUN git config --global --add safe.directory /home/pandas
ENV SHELL "/bin/bash"
CMD ["/bin/bash"]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment