mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-03 23:15:37 +00:00
12 lines
193 B
Docker
12 lines
193 B
Docker
|
FROM python:3.9
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY . /app
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
ENV FLASK_APP=app.py
|
||
|
ENV FLASK_ENV=development
|
||
|
|
||
|
EXPOSE 5000
|
||
|
|
||
|
CMD ["flask", "run", "--host=0.0.0.0"]
|