Commit c61c2df Louis_45
authored
File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ FROM python:3.8
2
+
3
+ WORKDIR /usr/src/app
4
+
5
+ COPY requirements.txt ./
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
+
8
+ COPY activate_packages.py ./
9
+
10
+ CMD [ "python" , "./activate_packages.py" ]
Original file line number Diff line number Diff line change
1
+ version : ' 3.7'
2
+ services :
3
+ reddit-bot :
4
+ image : ghcr.io/luois45/claim-free-steam-packages:latest
5
+ deploy :
6
+ replicas : 1
7
+ restart_policy :
8
+ condition : on-failure
9
+ max_attempts : 0
10
+ volumes :
11
+ # Replace the first path with your path to the activated_packages.txt & config.json file
12
+ - /c/Users/Louis/Desktop/code/ClaimSteamLicenses/acitvated_packages.txt:/usr/src/app/acitvated_packages.txt
13
+ - /c/Users/Louis/Desktop/code/ClaimSteamLicenses/config.json:/usr/src/app/config.json:ro
14
+ # Comment the following line if you don't want the logs in your directory
15
+ - /c/Users/Louis/Desktop/code/ClaimSteamLicenses/logging.txt:/usr/src/app/logging.txt
You can’t perform that action at this time.
0 commit comments