dragg2 commited on
Commit
fca3fda
·
verified ·
1 Parent(s): da4be69

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/thesmallhancat/flow2api:latest
2
+
3
+ USER root
4
+ RUN mkdir -p /app/data /app/tmp && chown -R 1000:1000 /app && \
5
+ sed -i 's/^port = 8000$/port = 7860/' /app/config/setting.toml
6
+
7
+ EXPOSE 7860