forked from apache/datafusion-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e6c4194
commit ebbd7ff
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |