Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] - add libkrb5-dev to Dockerfile.worker #162

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker/Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
make \
libnghttp2-dev \
libffi-dev \
libkrb5-dev \
&& rm -rf /var/lib/apt/lists/*

RUN apt-get update && apt-get install -y curl \
Expand All @@ -37,12 +38,12 @@
CMD ["--loglevel=info"]


FROM base as prod

Check warning on line 41 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / Clickhouse tests / Run Clickhouse tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 41 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / Oracle tests / Run Oracle tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 41 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / HDFS tests / Run HDFS tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 41 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / MySQL tests / Run MySQL tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 41 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / Hive tests / Run Hive tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 41 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / MSSQL tests / Run MSSQL tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 41 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / S3 tests / Run S3 tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 41 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / Scheduler tests / Run Scheduler tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

COPY ./syncmaster/ /app/syncmaster/


FROM base as test

Check warning on line 46 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / Clickhouse tests / Run Clickhouse tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 46 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / Oracle tests / Run Oracle tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 46 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / HDFS tests / Run HDFS tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 46 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / MySQL tests / Run MySQL tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 46 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / Hive tests / Run Hive tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 46 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / MSSQL tests / Run MSSQL tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 46 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / S3 tests / Run S3 tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 46 in docker/Dockerfile.worker

View workflow job for this annotation

GitHub Actions / Scheduler tests / Run Scheduler tests

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ENV SYNCMASTER__WORKER__CREATE_SPARK_SESSION_FUNCTION=tests.spark.get_worker_spark_session

Expand Down
Loading