mirror of
https://github.com/hibobmaster/matrix_chatgpt_bot.git
synced 2024-10-01 05:35:36 -04:00
14 lines
202 B
Docker
14 lines
202 B
Docker
FROM python:3.10-alpine
|
|
|
|
RUN sed -i 's|v3\.\d*|edge|' /etc/apk/repositories
|
|
|
|
RUN apk add olm-dev gcc musl-dev
|
|
|
|
COPY ./ /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
ENTRYPOINT python main.py
|