Add baseline ETo endpoint

This commit is contained in:
Matthew Oslan
2019-06-25 17:11:03 -04:00
parent 36c2435895
commit 7a7fde393f
10 changed files with 642 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
FROM alpine:3.10
VOLUME /output/
ENTRYPOINT ["/entrypoint.sh"]
# Default to 20 passes.
CMD ["20"]
COPY dataPreparer.c /dataPreparer.c
COPY prepareData.sh /prepareData.sh
COPY entrypoint.sh /entrypoint.sh
RUN apk --update add imagemagick gcc libc-dev && chmod +x /entrypoint.sh /prepareData.sh