Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gitdeem
/
flux
like
1
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
flux
/
Dockerfile
gitdeem
Upload Dockerfile
4c8f35d
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
145 Bytes
FROM
node:alpine
WORKDIR
/app
COPY
. /app
RUN
npm install
RUN
mkdir
/app/images \
&& chmod
777
/app/images
CMD
[
"npm"
,
"start"
]