Files
addons/custom_deps/Dockerfile
George Marshall 446dd8d65c Fixes to custom deps (#422)
* Fix spelling

* Cleanup up custom_deps/run.sh

* Disable sheelcheck warning

* Update run.sh

* Update CHANGELOG.md

* Update config.json

* Create build.json

* Update Dockerfile
2018-10-10 10:07:35 +02:00

16 lines
194 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache \
gcc g++ make cmake git
# Copy data
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]