From e102af52caeb39b52ca8842acadae52e4f8a1b6a Mon Sep 17 00:00:00 2001 From: Birhanu Belay <bhbelay@uab.edu> Date: Thu, 12 Dec 2024 09:03:29 -0600 Subject: [PATCH] Add new file --- docker/Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker/Dockerfile diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000000..3e6b8c591e --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,17 @@ +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 -- GitLab