mirror of
https://github.com/status-im/keycard-cli.git
synced 2025-03-01 04:10:33 +00:00
17 lines
395 B
Docker
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"]
|