Skip to content

Commit

Permalink
added a conda dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-J-Ward committed May 28, 2024
1 parent e6c4194 commit ebbd7ff
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docker/Dockerfile.conda
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
FROM condaforge/miniforge3:latest

RUN apt-get update && \
apt-get install -y \
vim \
protobuf-compiler \
&& apt update

RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y

RUN mkdir /workspace

WORKDIR /workspace

# NOTE: `conda` is ignore in .dockerignore, so doesn't work
# but you *can* `docker run -v .:/workspace`
# ADD conda /workspace/
# RUN conda env create -f ./conda/environments/datafusion-dev.yaml -n datafusion-dev

CMD ["/bin/sh", "-c", "bash"]

0 comments on commit ebbd7ff

Please sign in to comment.