mirror of
https://github.com/Balshgit/gpt_chat_bot.git
synced 2025-09-11 22:30:41 +03:00
19 lines
428 B
Docker
19 lines
428 B
Docker
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"]
|