Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
FROM ghcr.io/ep9io/rustpipe:main
|
| 2 |
|
| 3 |
|
| 4 |
-
ENV
|
| 5 |
ENV PORT=7860
|
| 6 |
-
ENV
|
| 7 |
|
| 8 |
WORKDIR /workspace
|
| 9 |
|
|
@@ -18,4 +18,4 @@ USER 1000
|
|
| 18 |
# clears the ["/usr/local/bin/rustpipe"] entrypoint from the base image
|
| 19 |
ENTRYPOINT []
|
| 20 |
|
| 21 |
-
CMD rustpipe server --bind 0.0.0.0:7860
|
|
|
|
| 1 |
FROM ghcr.io/ep9io/rustpipe:main
|
| 2 |
|
| 3 |
|
| 4 |
+
ENV RUSTPIPE_LOG=DEBUG
|
| 5 |
ENV PORT=7860
|
| 6 |
+
ENV AUTH_TOKENs=abc123
|
| 7 |
|
| 8 |
WORKDIR /workspace
|
| 9 |
|
|
|
|
| 18 |
# clears the ["/usr/local/bin/rustpipe"] entrypoint from the base image
|
| 19 |
ENTRYPOINT []
|
| 20 |
|
| 21 |
+
CMD rustpipe server --bind 0.0.0.0:7860
|