mirror of
https://github.com/Lakr233/GitLab-License-Generator.git
synced 2026-01-30 11:55:35 +02:00
feat: docker image
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM ruby:bookworm
|
||||
WORKDIR /license-generator
|
||||
COPY ./ ./
|
||||
RUN <<EOF
|
||||
gem install gitlab-license
|
||||
EOF
|
||||
VOLUME /license-generator/build
|
||||
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" ]
|
||||
Reference in New Issue
Block a user