You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
407 B
24 lines
407 B
5 years ago
|
FROM ubuntu:16.04
|
||
|
|
||
|
ENV DEBIAN_FRONTEND noninteractive
|
||
|
|
||
|
ENV LANG C.UTF-8
|
||
|
|
||
|
ENV GOROOT /usr/local/go
|
||
|
|
||
|
ENV GOPATH /usr/local
|
||
|
|
||
|
ENV PATH $GOPATH/bin:$GOROOT/bin:$PATH
|
||
|
|
||
5 years ago
|
ENV MINT_ROOT_DIR /mint
|
||
|
|
||
|
COPY mint /mint
|
||
|
|
||
5 years ago
|
RUN apt-get --yes update && apt-get --yes upgrade && \
|
||
|
apt-get --yes --quiet install wget jq curl git dnsmasq && \
|
||
5 years ago
|
cd /mint && /mint/release.sh
|
||
5 years ago
|
|
||
|
WORKDIR /mint
|
||
|
|
||
|
ENTRYPOINT ["/mint/entrypoint.sh"]
|