This repository has been archived on 2024-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
balena-elixir/Dockerfile.debian.build.tpl

18 lines
236 B
Docker
Raw Normal View History

2019-11-30 08:37:46 +13:00
FROM #{FROM}
ENV LANG=C.UTF-8
#{CROSS_BUILD_START}
RUN rm -rf /builder ; mkdir /builder
COPY builder.sh shasums versions /builder/
WORKDIR /builder
RUN ./builder.sh #{VERSION}
RUN rm -rf /builder
#{CROSS_BUILD_END}
CMD [ "iex" ]