generated from opentensor/bittensor-subnet-template
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: use container images #139
Labels
Comments
26 tasks
39 tasks
Blocked by masa-finance/roadmap#53 |
35 tasks
32 tasks
A very basic Dockerfile which builds here: FROM python:3.12 AS base
WORKDIR /app
RUN apt update && \
apt install -y nodejs npm && \
npm install -g pm2
RUN git clone https://github.com/opentensor/btcli.git
COPY . .
RUN python3 -m venv bittensor && \
/bin/bash -c "source bittensor/bin/activate && cd /app && pip install -e ."
RUN cd btcli && \
pip3 install . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As part of #109 we have now container images published by the pipelines.
We want now to be consistent and have documentation explaining how to use the images, and use these in place of having to setup the environment manually (via
git clone
,pip
and runningmake
commands).The text was updated successfully, but these errors were encountered: