circulartext commited on
Commit
2a277d0
·
1 Parent(s): c54d308

Delete Dockerfilechecklist

Browse files
Files changed (1) hide show
  1. Dockerfilechecklist +0 -41
Dockerfilechecklist DELETED
@@ -1,41 +0,0 @@
1
- # Use a suitable base Docker image with necessary dependencies
2
- FROM circulartextapp/spaceread
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
-
29
- # Install gosu (adjust the package manager based on your base image)
30
- RUN apt-get update && apt-get install -y gosu && rm -rf /var/lib/apt/lists/*
31
- COPY entrypoint.sh /usr/local/bin/entrypoint.sh
32
- RUN chmod +x /usr/local/bin/entrypoint.sh
33
-
34
- # Switch to the user for improved security
35
- USER user
36
-
37
- # Define the entrypoint script to handle user creation and application startup
38
- ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
39
-
40
- # Default command to run if the user doesn't provide a command
41
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]