Update Dockerfile
Browse files- Dockerfile +2 -5
Dockerfile
CHANGED
|
@@ -1,10 +1,7 @@
|
|
| 1 |
FROM requarks/wiki:2
|
| 2 |
|
| 3 |
-
#
|
|
|
|
| 4 |
ENV PORT=7860
|
| 5 |
|
| 6 |
-
# EXPOSE is for documentation; HF will automatically map 7860
|
| 7 |
-
EXPOSE 7860
|
| 8 |
-
|
| 9 |
-
# Start the server using the official command
|
| 10 |
CMD ["node", "server"]
|
|
|
|
| 1 |
FROM requarks/wiki:2
|
| 2 |
|
| 3 |
+
# Fix for Supabase SSL Certificate issues
|
| 4 |
+
ENV NODE_TLS_REJECT_UNAUTHORIZED=0
|
| 5 |
ENV PORT=7860
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
CMD ["node", "server"]
|