We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c6f7bd + 5a3413d commit fd75c5fCopy full SHA for fd75c5f
2 files changed
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM python:3.12-slim
2
+
3
+WORKDIR /app
4
5
+COPY requirements.txt .
6
+RUN pip install --no-cache-dir --upgrade pip && \
7
+ pip install --no-cache-dir -r requirements.txt
8
9
+COPY . .
10
11
+ENTRYPOINT ["python", "LocalBot.py"]
railway.toml
@@ -0,0 +1,7 @@
+[build]
+builder = "dockerfile"
+dockerfilePath = "Dockerfile"
+[deploy]
+restartPolicyType = "on_failure"
+restartPolicyMaxRetries = 10
0 commit comments