andrewrreed HF staff commited on
Commit
21af09f
·
1 Parent(s): c7401ed

add required env vars

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -9,6 +9,10 @@ RUN apk update && apk add --no-cache \
9
  net-tools \
10
  iproute2
11
 
 
 
 
 
12
  # Copy and set up the wrapper script
13
  COPY docker-entrypoint-wrapper.sh /docker-entrypoint-wrapper.sh
14
  RUN chmod +x /docker-entrypoint-wrapper.sh
 
9
  net-tools \
10
  iproute2
11
 
12
+ # Set up environment variables
13
+ ENV NEXTAUTH_SECRET=mysecret
14
+ ENV SALT=mysalt
15
+
16
  # Copy and set up the wrapper script
17
  COPY docker-entrypoint-wrapper.sh /docker-entrypoint-wrapper.sh
18
  RUN chmod +x /docker-entrypoint-wrapper.sh