create abc-toolbox docker image

This commit is contained in:
2021-03-13 10:04:22 -05:00
parent 7bd452a2a7
commit 5b78e3ba17
8 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#FROM ubuntu:21.04
#RUN apt-get update && ap-get install build-essential
FROM alpine/git
RUN apk add --update alpine-sdk
RUN mkdir -p /project
WORKDIR /project
RUN git clone https://git.xai-corp.net/richard/abcmidi.git /project
RUN make all install
WORKDIR /
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]