ah
This commit is contained in:
parent
3105a74320
commit
4e896d3290
2 changed files with 7 additions and 3 deletions
|
@ -1,10 +1,17 @@
|
|||
FROM ruby:bookworm
|
||||
|
||||
WORKDIR /license-generator
|
||||
|
||||
COPY ./ ./
|
||||
|
||||
RUN <<EOF
|
||||
gem install gitlab-license
|
||||
EOF
|
||||
|
||||
RUN chmod -R 777 .
|
||||
|
||||
VOLUME /license-generator/build
|
||||
|
||||
ENV LICENSE_NAME="Tim Cook"
|
||||
ENV LICENSE_COMPANY="Apple Computer, Inc."
|
||||
ENV LICENSE_EMAIL="tcook@apple.com"
|
||||
|
|
3
make.sh
3
make.sh
|
@ -1,8 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo "Updating perms"
|
||||
chmod -R 777 .
|
||||
|
||||
echo "[i] GitLab License Generator"
|
||||
echo "[i] Copyright (c) 2023 Tim Cook, All Rights Not Reserved"
|
||||
LICENSE_NAME="${LICENSE_NAME:-"Tim Cook"}"
|
||||
|
|
Loading…
Reference in a new issue