Moving poc under testutils directory.

This commit is contained in:
Roberto Abdelkader Martínez Pérez
2020-01-24 11:41:52 +01:00
parent f103b39a94
commit dd8b5895bd
15 changed files with 249 additions and 409 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM python:3.7-alpine
RUN apk upgrade --update-cache \
&& apk add bash curl coreutils file \
&& pip install pipenv
COPY Pipfile Pipfile.lock /
RUN pipenv install --system --deploy \
&& rm -f /Pipfile /Pipfile.lock
COPY bin/* /usr/bin/
ENTRYPOINT ["/usr/bin/kapow"]