Create Dockerfile
Browse files- Dockerfile +9 -0
Dockerfile
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM requarks/wiki:2
|
| 2 |
+
|
| 3 |
+
# HF Spaces requires port 7860
|
| 4 |
+
ENV PORT=7860
|
| 5 |
+
EXPOSE 7860
|
| 6 |
+
|
| 7 |
+
# The official image uses these variables by default
|
| 8 |
+
# We just ensure the working directory is correct
|
| 9 |
+
WORKDIR /wiki
|