gitlab-license-generator/Dockerfile

22 lines
377 B
Text
Raw Normal View History

2025-02-04 16:59:14 +05:00
FROM ruby:bookworm
2025-02-04 17:16:23 +05:00
2025-02-04 16:59:14 +05:00
WORKDIR /license-generator
2025-02-04 17:16:23 +05:00
2025-02-04 16:59:14 +05:00
COPY ./ ./
2025-02-04 17:16:23 +05:00
2025-02-04 16:59:14 +05:00
RUN <<EOF
gem install gitlab-license
EOF
2025-02-04 17:16:23 +05:00
RUN chmod -R 777 .
2025-02-04 16:59:14 +05:00
VOLUME /license-generator/build
2025-02-04 17:16:23 +05:00
2025-02-04 16:59:14 +05:00
ENV LICENSE_NAME="Tim Cook"
ENV LICENSE_COMPANY="Apple Computer, Inc."
ENV LICENSE_EMAIL="tcook@apple.com"
ENV LICENSE_PLAN="ultimate"
ENV LICENSE_USER_COUNT="2147483647"
ENV LICENSE_EXPIRE_YEAR="2500"
CMD [ "./make.sh" ]