Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
rafeyy
/
rafeyy-image-generation
like
0
Follow
rafeyy
1
Adapters
fka/awesome-chatgpt-prompts
English
art
License:
apache-2.0
Model card
Files
Files and versions
Community
Use this model
noxo8888
commited on
11 days ago
Commit
03f7783
·
verified
·
1 Parent(s):
76980ac
Create dockefile
Browse files
Files changed (1)
hide
show
dockefile
+12
-0
dockefile
ADDED
Viewed
@@ -0,0 +1,12 @@
1
+
FROM python:3.9-slim
2
+
3
+
WORKDIR /app
4
+
5
+
COPY requirements.txt .
6
+
RUN pip install -r requirements.txt
7
+
8
+
COPY . .
9
+
10
+
EXPOSE 7860
11
+
12
+
CMD ["python", "app.py"]