mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-09-07 07:12:52 +02:00
add conda builder dockerfile
This commit is contained in:
parent
7d5a60b44e
commit
40f6508717
1 changed files with 11 additions and 0 deletions
11
ext/central-controller-docker/Dockerfile.conda_builder
Normal file
11
ext/central-controller-docker/Dockerfile.conda_builder
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM continuumio/miniconda3:25.3.1-1
|
||||
|
||||
LABEL maintainer="ZeroTier Inc."
|
||||
|
||||
ADD environment.yml /environment.yml
|
||||
RUN conda env create -f /environment.yml && \
|
||||
conda clean -a -y
|
||||
|
||||
ADD . /ZeroTierOne
|
||||
SHELL ["conda", "run", "--no-capture-output", "-n", "central_controller", "/bin/bash", "-c"]
|
||||
ENTRYPOINT ["conda", "run", "--no-capture-output", "-n", "central_controller", "/bin/bash"]
|
Loading…
Add table
Reference in a new issue