Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rrg92
/
sqlserver
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c758355
sqlserver
/
Dockerfile
rrg92
v1
b1cbef8
3 months ago
raw
Copy download link
history
blame
Safe
121 Bytes
FROM
node:
22
-alpine
WORKDIR
app
RUN
npm i express
RUN
npm i @gradio/client
COPY
./app ./app
CMD
[
"node"
,
"app"
]