first commit
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
COPY ./requirements.txt requirements.txt
|
||||
|
||||
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["gunicorn", "wsgi:app", "-b", "0.0.0.0:5000"]
|
||||
|
||||
0
instance/DATABASE.txt
Normal file
0
instance/DATABASE.txt
Normal file
0
requirements.txt
Normal file
0
requirements.txt
Normal file
0
static/CONTENT.txt
Normal file
0
static/CONTENT.txt
Normal file
0
templates/HTML FILES.txt
Normal file
0
templates/HTML FILES.txt
Normal file
Reference in New Issue
Block a user