matrix_chatgpt_bot/Dockerfile

21 lines
541 B
Docker
Raw Normal View History

2023-04-06 14:05:32 +00:00
FROM python:3.11-alpine as base
FROM base as pybuilder
2023-03-09 15:40:34 +00:00
RUN sed -i 's|v3\.\d*|edge|' /etc/apk/repositories
2023-04-10 02:52:18 +00:00
RUN apk update && apk add olm-dev gcc musl-dev libmagic
2023-03-10 01:20:14 +00:00
COPY requirements.txt /requirements.txt
RUN pip3 install --user -r /requirements.txt && rm /requirements.txt
2023-03-09 15:40:34 +00:00
2023-04-06 14:05:32 +00:00
FROM base as runner
2023-03-22 15:40:32 +00:00
LABEL "org.opencontainers.image.source"="https://github.com/hibobmaster/matrix_chatgpt_bot"
RUN apk update && apk add olm-dev libmagic
2023-03-10 01:20:14 +00:00
COPY --from=pybuilder /root/.local /usr/local
COPY . /app
2023-03-09 15:40:34 +00:00
2023-03-10 01:20:14 +00:00
FROM runner
WORKDIR /app
CMD ["python", "main.py"]
2023-03-09 15:40:34 +00:00