matrix_chatgpt_bot/Dockerfile

20 lines
533 B
Text
Raw Normal View History

2023-04-06 22:05:32 +08:00
FROM python:3.11-alpine as base
FROM base as pybuilder
2023-04-11 08:48:52 +08:00
# RUN sed -i 's|v3\.\d*|edge|' /etc/apk/repositories
RUN apk update && apk add --no-cache olm-dev gcc musl-dev libmagic libffi-dev
2023-03-10 09:20:14 +08:00
COPY requirements.txt /requirements.txt
2023-04-11 08:48:52 +08:00
RUN pip install -U pip setuptools wheel && pip install --user -r /requirements.txt && rm /requirements.txt
2023-03-09 23:40:34 +08:00
2023-04-06 22:05:32 +08:00
FROM base as runner
2023-04-11 08:48:52 +08:00
RUN apk update && apk add --no-cache olm-dev libmagic libffi-dev
2023-03-10 09:20:14 +08:00
COPY --from=pybuilder /root/.local /usr/local
COPY . /app
2023-03-09 23:40:34 +08:00
2023-03-10 09:20:14 +08:00
FROM runner
WORKDIR /app
CMD ["python", "main.py"]
2023-03-09 23:40:34 +08:00