File size: 1,040 Bytes
f572332
b61cc42
f572332
b61cc42
b0f0c9f
79cbbff
a6e975c
b0f0c9f
 
f572332
79cbbff
 
 
 
 
b0f0c9f
 
 
 
 
 
79cbbff
 
 
 
 
 
 
 
b0f0c9f
 
 
f572332
b0f0c9f
b61cc42
 
b0f0c9f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM python:3.9-slim

WORKDIR /app

# Install necessary packages
RUN pip install --no-cache-dir flask gunicorn requests

# Copy the HTML file
COPY index.html /app/static/index.html

# Create a Flask app with API proxy
RUN echo 'from flask import Flask, redirect, jsonify\n\
import requests\n\
import json\n\
\n\
app = Flask(__name__, static_folder="static")\n\
\n\
@app.route("/")\n\
def index():\n\
    return redirect("/static/index.html")\n\
\n\
@app.route("/api/trading-data")\n\
def trading_data():\n\
    try:\n\
        response = requests.get("https://badimo.nyc3.digitaloceanspaces.com/trade/frequency/snapshot/month/latest.json")\n\
        return response.text, response.status_code\n\
    except Exception as e:\n\
        return jsonify({"error": str(e)}), 500\n\
\n\
if __name__ == "__main__":\n\
    app.run(host="0.0.0.0", port=7860)\n\
' > /app/app.py

# Expose the port that HuggingFace Spaces expects
EXPOSE 7860

# Start the server
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]