Spaces:
Runtime error
Runtime error
circulartext
commited on
Commit
•
c6c1742
1
Parent(s):
deded0d
Update Dockerfile
Browse files- Dockerfile +33 -8
Dockerfile
CHANGED
@@ -1,15 +1,40 @@
|
|
1 |
# Use your base Docker image from Docker Hub
|
2 |
-
FROM circulartextapp/
|
3 |
|
4 |
-
# Set the working directory
|
5 |
-
WORKDIR /
|
|
|
|
|
6 |
|
7 |
-
#
|
8 |
-
|
9 |
-
|
10 |
|
11 |
-
#
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
# Specify the command to run your application
|
15 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]
|
|
|
1 |
# Use your base Docker image from Docker Hub
|
2 |
+
FROM circulartextapp/circulartextaii
|
3 |
|
4 |
+
# Set the working directory to /app
|
5 |
+
WORKDIR /app
|
6 |
+
# Copy the current directory contents into the container at /app
|
7 |
+
COPY . /app
|
8 |
|
9 |
+
# Define the user ID in the environment variable USER_ID with a default value
|
10 |
+
ARG USER_ID=1000
|
11 |
+
ENV USER_ID=$USER_ID
|
12 |
|
13 |
+
# Check if the user already exists
|
14 |
+
RUN if [ -z "$USER_ID" ]; then \
|
15 |
+
echo "User ID not provided. Using the default user ID 1000."; \
|
16 |
+
USER_ID=1000; \
|
17 |
+
fi && \
|
18 |
+
if id "$USER_ID" >/dev/null 2>&1; then \
|
19 |
+
echo "User with ID $USER_ID already exists."; \
|
20 |
+
else \
|
21 |
+
useradd -m -u "$USER_ID" user; \
|
22 |
+
fi
|
23 |
+
|
24 |
+
# Set appropriate permissions for the application directory
|
25 |
+
RUN chown -R user:user /app && chmod -R 755 /app
|
26 |
+
|
27 |
+
|
28 |
+
# Install gosu (adjust the package manager based on your base image)
|
29 |
+
RUN apt-get update && apt-get install -y gosu && rm -rf /var/lib/apt/lists/*
|
30 |
+
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
31 |
+
RUN chmod +x /usr/local/bin/entrypoint.sh
|
32 |
+
|
33 |
+
# Switch to the user for improved security
|
34 |
+
USER user
|
35 |
+
|
36 |
+
# Define the entrypoint script to handle user creation and application startup
|
37 |
+
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
38 |
|
39 |
# Specify the command to run your application
|
40 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]
|