Files
kapow/testutils/poc/Dockerfile
Roberto Abdelkader Martínez Pérez dd8b5895bd Moving poc under testutils directory.
2020-01-24 11:58:57 +01:00

15 lines
280 B
Docker

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"]