mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 19:08:52 +00:00
c8837ea414
Run entrypoint script
12 lines
270 B
Docker
12 lines
270 B
Docker
FROM java:8-jre-alpine
|
|
|
|
RUN apk add --no-cache bash
|
|
|
|
ADD target/openapi-generator-cli.jar /opt/openapi-generator/modules/openapi-generator-cli/target/openapi-generator-cli.jar
|
|
|
|
COPY docker-entrypoint.sh /usr/local/bin/
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
|
|
CMD ["help"]
|