Commit
·
516ca8d
1
Parent(s):
b3bd35a
add some logging statements
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -3,17 +3,20 @@ FROM langfuse/langfuse:2
|
|
3 |
USER root
|
4 |
|
5 |
# Install PostgreSQL and necessary dependencies
|
|
|
6 |
RUN apk update && apk add --no-cache \
|
7 |
postgresql \
|
8 |
postgresql-contrib
|
9 |
|
10 |
# Create postgres user and data directory with proper permissions
|
|
|
11 |
RUN mkdir -p /var/lib/postgresql/data /run/postgresql && \
|
12 |
chown -R postgres:postgres /var/lib/postgresql/data /run/postgresql && \
|
13 |
chmod 0700 /var/lib/postgresql/data && \
|
14 |
chmod 0755 /run/postgresql
|
15 |
|
16 |
# Set up environment variables
|
|
|
17 |
ENV DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres
|
18 |
ENV NEXTAUTH_SECRET=mysecret
|
19 |
ENV SALT=mysalt
|
@@ -21,6 +24,7 @@ ENV ENCRYPTION_KEY=0000000000000000000000000000000000000000000000000000000000000
|
|
21 |
ENV NEXTAUTH_URL=http://localhost:3000
|
22 |
|
23 |
# Simplified wrapper script running everything as root
|
|
|
24 |
COPY <<EOF /docker-entrypoint-wrapper.sh
|
25 |
#!/bin/sh
|
26 |
|
@@ -39,8 +43,10 @@ done
|
|
39 |
./web/entrypoint.sh node ./web/server.js --keepAliveTimeout 110000
|
40 |
EOF
|
41 |
|
|
|
42 |
RUN chmod +x /docker-entrypoint-wrapper.sh
|
43 |
|
44 |
EXPOSE 3000 5432
|
45 |
|
|
|
46 |
ENTRYPOINT ["dumb-init", "--", "/docker-entrypoint-wrapper.sh"]
|
|
|
3 |
USER root
|
4 |
|
5 |
# Install PostgreSQL and necessary dependencies
|
6 |
+
RUN echo "Installing PostgreSQL..."
|
7 |
RUN apk update && apk add --no-cache \
|
8 |
postgresql \
|
9 |
postgresql-contrib
|
10 |
|
11 |
# Create postgres user and data directory with proper permissions
|
12 |
+
RUN echo "Creating postgres user and data directory..."
|
13 |
RUN mkdir -p /var/lib/postgresql/data /run/postgresql && \
|
14 |
chown -R postgres:postgres /var/lib/postgresql/data /run/postgresql && \
|
15 |
chmod 0700 /var/lib/postgresql/data && \
|
16 |
chmod 0755 /run/postgresql
|
17 |
|
18 |
# Set up environment variables
|
19 |
+
RUN echo "Setting up environment variables..."
|
20 |
ENV DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres
|
21 |
ENV NEXTAUTH_SECRET=mysecret
|
22 |
ENV SALT=mysalt
|
|
|
24 |
ENV NEXTAUTH_URL=http://localhost:3000
|
25 |
|
26 |
# Simplified wrapper script running everything as root
|
27 |
+
RUN echo "Creating wrapper script..."
|
28 |
COPY <<EOF /docker-entrypoint-wrapper.sh
|
29 |
#!/bin/sh
|
30 |
|
|
|
43 |
./web/entrypoint.sh node ./web/server.js --keepAliveTimeout 110000
|
44 |
EOF
|
45 |
|
46 |
+
RUN echo "Setting permissions for wrapper script..."
|
47 |
RUN chmod +x /docker-entrypoint-wrapper.sh
|
48 |
|
49 |
EXPOSE 3000 5432
|
50 |
|
51 |
+
RUN echo "Setting entrypoint..."
|
52 |
ENTRYPOINT ["dumb-init", "--", "/docker-entrypoint-wrapper.sh"]
|