Skip to content

Commit

Permalink
b-load-the-remote-txt-file-as-dataframe-spiros-koulouzis-lifewatch-eu…
Browse files Browse the repository at this point in the history
… creation
  • Loading branch information
qcdis-bot committed Feb 24, 2025
1 parent 649cef6 commit 190363e
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM ghcr.io/qcdis/naavre/naavre-cell-build-python:v0.21.1 AS build
COPY --chown=$MAMBA_USER:$MAMBA_USER environment.yaml .
RUN micromamba install -y -n venv -f environment.yaml
ARG MAMBA_DOCKERFILE_ACTIVATE=1
USER root
RUN conda-pack -p /opt/conda/envs/venv -o /tmp/env.tar && \
mkdir /venv && cd /venv && tar xf /tmp/env.tar && \
rm /tmp/env.tar
RUN /venv/bin/conda-unpack

FROM ghcr.io/qcdis/naavre/naavre-cell-runtime-python:v0.21.1 AS runtime
COPY --from=build /venv /venv
WORKDIR /app
COPY . .

0 comments on commit 190363e

Please sign in to comment.