diff --git a/bq2bq/Dockerfile b/bq2bq/Dockerfile index 92fdd82..1916bee 100644 --- a/bq2bq/Dockerfile +++ b/bq2bq/Dockerfile @@ -1,8 +1,18 @@ FROM python:3.8-alpine +RUN apk add --no-cache \ + gcc \ + g++ \ + python3-dev \ + musl-dev \ + linux-headers + WORKDIR /opt/bumblebee COPY . . RUN ["pip", "install", "-r", "requirements.txt"] - +RUN ["pip", "install", "--no-deps", "opentelemetry-sdk", "opentelemetry-distro", "opentelemetry-exporter-otlp", "opentelemetry-instrumentation-system-metrics", "--no-cache-dir"] ENTRYPOINT [ "python3", "/opt/bumblebee/main.py"] + + +