Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
JammingJazz
/
quote-api
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b92f1a6
quote-api
/
Dockerfile
akkun3704
Update Dockerfile
151fa0c
about 1 year ago
raw
Copy download link
history
blame
Safe
217 Bytes
FROM
node:latest
RUN
apt-get update && apt-get install -y build-essential gcc wget git libvips &&
rm
-rf /var/lib/apt/lists/*
WORKDIR
/app
COPY
package.json .
RUN
npm i
COPY
. .
EXPOSE
7860
CMD
[
"npm"
,
"start"
]