Spaces:
Runtime error
Runtime error
slimshadow
commited on
Commit
•
d55d6b9
1
Parent(s):
2edaf07
Create Dockerfile
Browse files- Dockerfile +22 -0
Dockerfile
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use the official Python 3.9 image as the base
|
2 |
+
FROM python:3.9
|
3 |
+
|
4 |
+
# Create a new user to avoid running as root
|
5 |
+
RUN useradd -m -u 1000 user
|
6 |
+
USER user
|
7 |
+
|
8 |
+
# Add local binary path to the environment PATH
|
9 |
+
ENV PATH="/home/user/.local/bin:$PATH"
|
10 |
+
|
11 |
+
# Set the working directory in the container
|
12 |
+
WORKDIR /app
|
13 |
+
|
14 |
+
# Copy and install Python dependencies
|
15 |
+
COPY --chown=user ./requirements.txt requirements.txt
|
16 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
17 |
+
|
18 |
+
# Copy the bot code into the container
|
19 |
+
COPY --chown=user . /app
|
20 |
+
|
21 |
+
# Specify the default command to run the bot
|
22 |
+
CMD ["python", "bot.py"]
|