Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
YUFI-API/ProxyRecGen
YUFI-API
/
PomogatorProxy
like
1
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
PomogatorProxy
/
Dockerfile
Rooni
Update Dockerfile
0439441
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
195 Bytes
FROM
node:
18
WORKDIR
/app
COPY
package.json ./
RUN
npm install
RUN
npm install multer
RUN
mkdir
-p /app/uploads
RUN
chown
-R www-data /app/uploads
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"server.js"
]