circulartext commited on
Commit
89869f0
1 Parent(s): 4f4d115

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +37 -0
Dockerfile ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use your base Docker image from Docker Hub
2
+ FROM circulartextapp/circlast
3
+
4
+ # Set the working directory to /app
5
+ WORKDIR /app
6
+
7
+ # Copy the current directory contents into the container at /app
8
+ COPY . /app
9
+
10
+ # Define the user ID in the environment variable USER_ID with a default value
11
+ ARG USER_ID=1000
12
+ ENV USER_ID=$USER_ID
13
+
14
+ # Check if the user already exists
15
+ RUN if [ -z "$USER_ID" ]; then \
16
+ echo "User ID not provided. Using the default user ID 1000."; \
17
+ USER_ID=1000; \
18
+ fi && \
19
+ if id "$USER_ID" >/dev/null 2>&1; then \
20
+ echo "User with ID $USER_ID already exists."; \
21
+ else \
22
+ useradd -m -u "$USER_ID" user; \
23
+ fi
24
+
25
+ # Set appropriate permissions for the application directory
26
+ RUN chown -R user:user /app && chmod -R 755 /app
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"]