From 26a58c5c89e6662fe30a004539f9bb8fcc045454 Mon Sep 17 00:00:00 2001 From: gsd Date: Sun, 22 Oct 2023 01:14:46 +0300 Subject: [PATCH] steampy v1 --- Dockerfile | 2 +- backend_integration.py | 2 +- git_build/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f15281c..b571a3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ RUN groupadd -g 1000 service && useradd -g 1000 -u 1000 service ENV TZ=Europe/Moscow -RUN python -m pip install aiomysql aiohttp steamio git+https://github.com/conqp/rcon +RUN python -m pip install aiomysql aiohttp https://github.com/Gobot1234/steam.py/archive/refs/tags/V.1.0.0rc1.zip git+https://github.com/conqp/rcon RUN mkdir /home/service && \ cp /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \ diff --git a/backend_integration.py b/backend_integration.py index 1c49348..1f478f9 100644 --- a/backend_integration.py +++ b/backend_integration.py @@ -1,7 +1,7 @@ import aiohttp, os, sys from colors import * import traceback -from steam import SteamID +from steam import ID as SteamID class BackendClient: up = False diff --git a/git_build/Dockerfile b/git_build/Dockerfile index c825f1b..6ce3b2f 100644 --- a/git_build/Dockerfile +++ b/git_build/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.10 -RUN python -m pip install aiomysql aiohttp steamio git+https://github.com/conqp/rcon +RUN python -m pip install aiomysql aiohttp https://github.com/Gobot1234/steam.py/archive/refs/tags/V.1.0.0rc1.zip git+https://github.com/conqp/rcon WORKDIR /app ENV TZ=Europe/Moscow