v2 Standalone Docker Update #40

Merged
alex_orid merged 157 commits from v2.0 into master 2021-05-13 20:36:45 +00:00
5 changed files with 22 additions and 2 deletions
Showing only changes of commit 2034e6e907 - Show all commits

View File

@ -0,0 +1,11 @@
FROM python:3.10.0a7-alpine3.13
WORKDIR /Praxis
COPY requirements_sa_twitch_pubsub.txt requirements_sa_twitch_pubsub.txt
RUN apk add --update gcc libc-dev linux-headers && rm -rf /var/cache/apk/*
RUN pip3 install -r requirements_sa_twitch_pubsub.txt
COPY . .
CMD [ "python3", "standalone_twitch_pubsub.py"]

View File

@ -10,6 +10,10 @@ services:
image: standalone_twitchscript
environment:
- ISDOCKER=cat
standalone_twitch_pubsub:
image: standalone_twitch_pubsub
environment:
- ISDOCKER=cat
discordscript_standalone:
image: standalone_discordscript
environment:

View File

@ -1,3 +1,4 @@
docker build --file Dockerfile_standalone_command --tag standalone_command .
docker build --file Dockerfile_standalone_DiscordScript --tag standalone_discordscript .
docker build --file Dockerfile_standalone_TwitchScript --tag standalone_twitchscript .
docker build --file Dockerfile_standalone_TwitchScript --tag standalone_twitchscript .
docker build --file Dockerfile_standalone_Twitch_Pubsub --tag standalone_twitch_pubsub .

View File

@ -0,0 +1,4 @@
twitch-python
psutil
art
requests

View File

@ -8,7 +8,7 @@ class Twitch_Pubsub():
super().__init__()
self.twitchCredential: credentials.Twitch_Credential
def main():
def main(self):
pass