We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Not an issue, but I thought it would be helpful to other people to easily run this.
Create a new directory named "slack-bulkinviter", then once in that directory, copied the raw file there:
mkdir slack-bulkinviter && cd $_ curl -O https://raw.githubusercontent.com/robby-dermody/slack-bulkinviter/master/slack-bulkinviter.py
You'll also want to create your apikey.txt file in this same directory with the contents of your API key.
apikey.txt
I then created file named Dockerfile and pasted in the following contents:
Dockerfile
FROM python:3.8.2-buster RUN pip install --no-cache-dir slacker COPY slack-bulkinviter.py . COPY apikey.txt .
Then built the docker image with:
docker build -t slack-bulkinviter .
At this point you should be all set, and can run the script like so:
docker run -it --rm slack-bulkinviter python slack-bulkinviter.py your-channel
Hope this is helpful to someone who doesn't have python already installed on their system, or just wants a clean disposable way to run this script!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Not an issue, but I thought it would be helpful to other people to easily run this.
Create a new directory named "slack-bulkinviter", then once in that directory, copied the raw file there:
You'll also want to create your
apikey.txt
file in this same directory with the contents of your API key.I then created file named
Dockerfile
and pasted in the following contents:Then built the docker image with:
At this point you should be all set, and can run the script like so:
Hope this is helpful to someone who doesn't have python already installed on their system, or just wants a clean disposable way to run this script!
The text was updated successfully, but these errors were encountered: