10 lines
301 B
Docker
10 lines
301 B
Docker
FROM kong:2.8.1
|
|
|
|
# Embed the config template and wrapper script
|
|
COPY kong.yml.template /var/lib/kong/kong.yml.template
|
|
COPY docker-entrypoint-wrapper.sh /docker-entrypoint-wrapper.sh
|
|
RUN chmod +x /docker-entrypoint-wrapper.sh
|
|
|
|
ENTRYPOINT ["/docker-entrypoint-wrapper.sh"]
|
|
CMD ["kong", "docker-start"]
|