mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-20 10:20:15 +01:00
11 lines
161 B
Text
11 lines
161 B
Text
|
|
FROM python:3.9
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY server.py .
|
||
|
|
COPY requirements.txt .
|
||
|
|
|
||
|
|
RUN pip install -r requirements.txt
|
||
|
|
RUN rm requirements.txt
|
||
|
|
|
||
|
|
CMD ["python", "server.py"]
|