Jakub Sokołowski 9702bd8679 add Jenkinsfile and improve docker image creation
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-03-27 14:06:39 +01:00

17 lines
395 B
Docker

FROM karalabe/xgo-1.11.x
ENV LANG=en_US.UTF-8 \
LC_ALL=en_US.UTF-8 \
LANGUAGE=en_US.UTF-8
RUN apt-get update \
&& apt-get install -y libpcsclite-dev locales \
&& apt-get clean \
&& locale-gen ${LANG} \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
MAINTAINER Jakub Sokolowski "jakub@status.im"
LABEL description="Image for building keycard-cli tool."
ENTRYPOINT ["/build.sh"]