Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
locmaymo
/
workflow
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
locmaymo
commited on
Jan 24
Commit
7f89384
·
verified
·
1 Parent(s):
ddee1a1
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
FROM n8nio/n8n:latest
2
+
3
+
USER root
4
+
5
+
RUN mkdir -p /home/node/.n8n && \
6
+
chown -R node:node /home/node/.n8n
7
+
8
+
USER node
9
+
10
+
ENTRYPOINT []
11
+
CMD ["n8n", "start"]