mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
dbf5c31724
Signed-off-by: Jess Frazelle <acidburn@google.com>
32 lines
622 B
Docker
32 lines
622 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apk add --no-cache \
|
|
ca-certificates \
|
|
curl \
|
|
libxml2 \
|
|
libressl \
|
|
xclip \
|
|
--repository https://dl-3.alpinelinux.org/alpine/edge/main
|
|
|
|
RUN set -x \
|
|
&& apk add --no-cache --virtual .build-deps \
|
|
autoconf \
|
|
automake \
|
|
build-base \
|
|
cmake \
|
|
curl-dev \
|
|
git \
|
|
libxml2-dev \
|
|
&& git clone --depth 1 https://github.com/LastPass/lastpass-cli.git /usr/src/lastpass-cli \
|
|
&& ( \
|
|
cd /usr/src/lastpass-cli \
|
|
&& cmake . \
|
|
&& make \
|
|
&& make install \
|
|
) \
|
|
&& rm -rf /usr/src/lastpass-cli \
|
|
&& apk del .build-deps
|
|
|
|
ENTRYPOINT [ "lpass" ]
|