Piotr Biernat
bf913bc358
All checks were successful
continuous-integration/drone/push Build is passing
19 lines
516 B
Docker
19 lines
516 B
Docker
FROM envoyproxy/envoy:v1.22.8
|
|
|
|
ARG BUILD_TIME
|
|
|
|
LABEL dev.egommerce.image.author="Piotr Biernat"
|
|
LABEL dev.egommerce.image.vendor="Egommerce"
|
|
LABEL dev.egommerce.image.service="api-gateway"
|
|
LABEL dev.egommerce.image.version="1.0"
|
|
LABEL dev.egommerce.image.build_time=${BUILD_TIME}
|
|
|
|
COPY ./api-gateway/etc /etc/envoy
|
|
# COPY ./api-gateway/plugins /plugins-local
|
|
COPY ./api-gateway/entrypoint.sh ./api-gateway/wait-for-it.sh /
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["envoy", "-c", "/etc/envoy/envoy.yaml"]
|
|
|
|
EXPOSE 443 8080
|