From 0cefb96567fcd66ac2e0c32ee8846371a5e5710e Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Thu, 28 Dec 2023 12:53:04 -0800 Subject: [PATCH] Figure out what our uid is --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index fc6da30..d35246e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,8 @@ FROM rocker/binder:4.3.2 ENV VIRTUAL_ENV=/opt/venv ENV PATH=${VIRTUAL_ENV}/bin:${PATH} +RUN id && ls -la ${VIRTUAL_ENV} + COPY requirements.txt /tmp/requirements.txt RUN pip install --no-cache -r /tmp/requirements.txt