FROM alpine:3.13.2

RUN mkdir /app

ADD . /app

WORKDIR /app

CMD ["echo", "e2e success: task running."]
