Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ainz
/
oai-proxy
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
oai-proxy
/
Dockerfile
idos
Duplicate from khanon/oai-proxy
f81f327
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
145 Bytes
FROM
node:
18
-bullseye-slim
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
RUN
npm run build
EXPOSE
7860
CMD
[
"npm"
,
"start"
]