Files
baude 82d7b9f2e2 add compose regression to ci
to prevent any regressions, we should be running regression tests using
compose.

Signed-off-by: baude <bbaude@redhat.com>
2020-12-11 09:26:29 -06:00

7 lines
131 B
Docker

FROM alpine
WORKDIR /app
RUN apk update && apk add py3-pip && pip3 install flask
COPY . /app
ENTRYPOINT ["python3"]
CMD ["app.py"]