Feat/fix start (#1)

format code
This commit is contained in:
Dmitry Afanasyev
2023-09-16 20:09:40 +03:00
committed by GitHub
parent 2d34a94eed
commit a95403f594
144 changed files with 8545 additions and 595 deletions

18
app/chat-gpt/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt requirements.txt
RUN python -m venv venv
ENV PATH="/app/venv/bin:$PATH"
RUN apt-get update \
&& apt-get install -y --no-install-recommends build-essential libffi-dev cmake libcurl4-openssl-dev \
&& pip install --upgrade pip && pip3 install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod -R 777 translations
CMD ["python3", "./run.py"]