mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-06 10:35:25 +00:00
53597764c3
Co-authored-by: Akihito Nakano <sora.akatsuki@gmail.com> Co-authored-by: Jeremie Bresson <dev@jmini.fr> Co-authored-by: Jim Schubert <james.schubert@gmail.com> Co-authored-by: Martin Delille <martin@phonations.com> Co-authored-by: Tomasz Prus <tomasz.prus@gmail.com> Co-authored-by: William Cheng <wing328hk@gmail.com>
19 lines
442 B
Bash
Executable File
19 lines
442 B
Bash
Executable File
#!/bin/bash
|
|
set -exo pipefail
|
|
|
|
cd "$(dirname ${BASH_SOURCE})"
|
|
|
|
maven_cache_repo="${HOME}/.m2/repository"
|
|
|
|
mkdir -p "${maven_cache_repo}"
|
|
|
|
docker run --rm -it \
|
|
-w /gen \
|
|
-e GEN_DIR=/gen \
|
|
-e MAVEN_CONFIG=/var/maven/.m2 \
|
|
-u "$(id -u):$(id -g)" \
|
|
-v "${PWD}:/gen" \
|
|
-v "${maven_cache_repo}:/var/maven/.m2/repository" \
|
|
--entrypoint /gen/docker-entrypoint.sh \
|
|
maven:3-jdk-8 "$@"
|