This commit is contained in:
2023-07-21 22:57:14 +01:00
parent df927977ba
commit 57f0bb9371
16 changed files with 1963 additions and 19 deletions

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
FROM python:3.11
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://github.com/luketainton/webexmemebot"
USER root
ENV PYTHONPATH="/run:/usr/local/lib/python3.11/lib-dynload:/usr/local/lib/python3.11/site-packages:/usr/local/lib/python3.11"
WORKDIR /run
RUN mkdir -p /.local && \
chmod -R 777 /.local && \
pip install -U pip
COPY requirements.txt /run/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
ENTRYPOINT ["python3", "-B", "-m", "app.main"]
COPY webexmemebot /run/app