Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Tx321
/
flow
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
da5f548
flow
/
Dockerfile
Tx321
Add Flowise application files
da5f548
about 1 year ago
raw
Copy download link
history
blame
Safe
202 Bytes
FROM
node
:14
RUN useradd -m -u
1000
user
USER
user
ENV
PATH=
"/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --
chown=
user
package
*.json ./
RUN npm install
COPY --
chown=
user
. .
CMD [
"npm"
,
"start"
]