Commit ·
b6ef0d3
0
Parent(s):
Minimal HF Space config: pull from quay.io and serve
Browse filesCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Dockerfile +8 -0
- README.md +12 -0
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM quay.io/diegosquayorg/railyard:latest
|
| 2 |
+
|
| 3 |
+
ENV GRADIO_SERVER_NAME=0.0.0.0
|
| 4 |
+
ENV GRADIO_SERVER_PORT=7860
|
| 5 |
+
|
| 6 |
+
EXPOSE 7860
|
| 7 |
+
|
| 8 |
+
CMD ["python", "app.py"]
|
README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Railyard
|
| 3 |
+
emoji: 🛤️
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: gray
|
| 6 |
+
sdk: docker
|
| 7 |
+
app_port: 7860
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Railyard
|
| 11 |
+
|
| 12 |
+
A simple guardrails playground. See [github.com/dmaniloff/railyard](https://github.com/dmaniloff/railyard) for source code.
|