Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
RayMelius
/
StockEx
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
StockEx
/
consumer
/
Dockerfile
RayMelius
Initial commit: StockEx trading platform
9e5fa5b
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
162 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
consumer.py .
CMD
[
"python"
,
"consumer.py"
]