mirror of
https://github.com/FiloSottile/age.git
synced 2026-01-11 06:00:11 +00:00
doc: SEC 1 encoding is for ECDSA, which we don't support doc: fix typo in age-keygen(1) (#273) <Andreas Wachowski> doc: document backwards compatibility policy doc: clarify backwards compatibility section doc: fix typo in age(1) (#333) <y-yagi> doc: fix typo in age(1) (#336) <puenka>
9 lines
245 B
Docker
9 lines
245 B
Docker
FROM ruby:3.0.1-buster
|
|
|
|
RUN apt-get update && apt-get install -y groff
|
|
RUN bundle config --global frozen 1
|
|
COPY Gemfile Gemfile.lock ./
|
|
RUN bundle install
|
|
ENTRYPOINT ["bash", "-O", "globstar", "-c", \
|
|
"/usr/local/bundle/bin/ronn **/*.ronn"]
|