Loads of updates to extensions and their documentation

This commit is contained in:
frikky
2021-09-29 03:30:13 +02:00
parent 9d1b5a41e9
commit d1e4f409a6
16 changed files with 232 additions and 206 deletions
+5 -8
View File
@@ -5,15 +5,12 @@ RUN apk --no-cache add --update alpine-sdk libffi libffi-dev musl-dev openssl-de
RUN mkdir /install
WORKDIR /install
COPY requirements.txt /requirements.txt
RUN pip3 install --prefix="/install" -r /requirements.txt
FROM base
#--no-cache
RUN apk update && apk add --update tzdata libmagic alpine-sdk libffi libffi-dev musl-dev openssl-dev
COPY --from=builder /install /usr/local
COPY requirements.txt /requirements.txt
RUN pip3 install -r /requirements.txt
COPY __init__.py /app/walkoff_app_sdk/__init__.py
COPY app_base.py /app/walkoff_app_sdk/app_base.py
WORKDIR /app
COPY sub.py /app/sub.py
CMD python sub.py