FROM alpine
WORKDIR /app

COPY source /app/source
COPY entrypoint.sh /app/entrypoint.sh

CMD [ "sh", "/app/entrypoint.sh" ]
