mirror of
https://github.com/1Password/onepassword-operator.git
synced 2025-10-21 23:18:06 +00:00
9 lines
280 B
Docker
9 lines
280 B
Docker
FROM ubuntu:latest
|
|
ARG VERSION
|
|
|
|
RUN apt-get update && apt-get install -y curl unzip jq && \
|
|
curl -o 1password.zip https://bucket.agilebits.com/cli-private-beta/v2/op_linux_amd64_v2-alpha2.zip && \
|
|
unzip 1password.zip -d /usr/local/bin && \
|
|
rm 1password.zip
|
|
|
|
CMD ["op"] |