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.
|
|
|
FROM ubuntu:18.04
|
|
|
|
|
|
|
|
ARG MENDER_ARTIFACT_VERSION=3.0.0
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
wget \
|
|
|
|
qemu-user-static
|
|
|
|
|
|
|
|
RUN wget -q -O /usr/bin/mender-artifact https://d1b0l86ne08fsf.cloudfront.net/mender-artifact/$MENDER_ARTIFACT_VERSION/mender-artifact \
|
|
|
|
&& chmod +x /usr/bin/mender-artifact
|
|
|
|
|
|
|
|
COPY docker-entrypoint.sh /usr/local/bin/
|
|
|
|
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
|