Dockerfile 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. ##### BUILDER #####
  2. FROM golang:1.13-alpine3.11 as builder
  3. ## Task: Install build deps
  4. # hadolint ignore=DL3018
  5. RUN set -eux; \
  6. apk add --no-progress --quiet --no-cache --upgrade --virtual .build-deps \
  7. gcc \
  8. git \
  9. musl-dev
  10. ## Task: copy source files
  11. COPY . /src
  12. WORKDIR /src
  13. ## Task: fetch project deps
  14. RUN go get \
  15. github.com/go-chi/chi \
  16. github.com/go-chi/chi/middleware \
  17. github.com/go-chi/render \
  18. gopkg.in/yaml.v3 \
  19. github.com/spf13/pflag
  20. ## Task: build project
  21. ENV GOOS="linux"
  22. ENV GOARCH="amd64"
  23. RUN go build -ldflags="-s -w" -o gomicro cmd/Service.go
  24. ## Task: set permissions
  25. RUN chmod 0755 /src/deployments/entrypoint.sh \
  26. /src/gomicro
  27. ## Task: runtime dependencies
  28. # hadolint ignore=DL3018
  29. RUN set -eux; \
  30. apk add --no-progress --quiet --no-cache --upgrade --virtual .run-deps \
  31. tzdata \
  32. openssl
  33. # hadolint ignore=DL3018,SC2183,DL4006
  34. RUN set -eu +x; \
  35. apk add --no-progress --quiet --no-cache --upgrade ncurses; \
  36. apk update --quiet; \
  37. printf '%30s\n' | tr ' ' -; \
  38. echo "RUNTIME DEPENDENCIES"; \
  39. PKGNAME=$(apk info --depends .run-deps \
  40. | sed '/^$/d;/depends/d' \
  41. | sort -u ); \
  42. printf '%s\n' "${PKGNAME}" \
  43. | while IFS= read -r pkg; do \
  44. apk info --quiet --description --no-network "${pkg}" \
  45. | sed -n '/description/p' \
  46. | sed -r "s/($(echo "${pkg}" | sed -r 's/\+/\\+/g'))-(.*)\s.*/\1=\2/"; \
  47. done \
  48. | tee -a /usr/share/rundeps; \
  49. printf '%30s\n' | tr ' ' -
  50. ##### TARGET #####
  51. FROM alpine:3.11
  52. ARG RELEASE
  53. ENV IMG_VERSION="${RELEASE}"
  54. COPY --from=builder /src/gomicro /usr/local/bin/
  55. COPY --from=builder /src/deployments/entrypoint.sh /
  56. COPY --from=builder /src/configs/service.yaml /config/
  57. COPY --from=builder /usr/share/rundeps /usr/share/rundeps
  58. RUN set -eux; \
  59. xargs -a /usr/share/rundeps apk add --no-progress --quiet --no-cache --upgrade --virtual .run-deps
  60. ENTRYPOINT ["/entrypoint.sh"]
  61. EXPOSE 8080 8443
  62. HEALTHCHECK --interval=30s --timeout=5s --retries=3 --start-period=10s \
  63. CMD wget -q -T 5 --spider http://localhost:8080/health/health
  64. LABEL org.opencontainers.image.title="GoMicro" \
  65. org.opencontainers.image.description="DM GoMicro" \
  66. org.opencontainers.image.version="${IMG_VERSION}" \
  67. org.opencontainers.image.source="https://bitbucket.easy.de/scm/dm/service-gomicro-go.git" \
  68. org.opencontainers.image.vendor="EASY SOFTWARE AG (www.easy-software.com)" \
  69. org.opencontainers.image.authors="EASY Apiomat GmbH" \
  70. maintainer="EASY Apiomat GmbH" \
  71. NAME="gomicro"