8000 fix(docker): missing libc package by FredrikBakken · Pull Request #973 · unitycatalog/unitycatalog · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(docker): missing libc package #973

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ RUN apk add --no-cache bash && ./build/sbt -info clean package
# Small runtime image
FROM alpine:${ALPINE_VERSION} as runtime

# Resolve missing libc package
RUN apk update && apk add --no-cache libc6-compat
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tnightengale do you have any concerns with updating an older version of libc6-compat? Per the issue original issue, I believe this was an issue due to running the docker on a Windows environment. I don't believe there is an issue with current *nix environments but figured I would check with you on this?


# Specific JAVA_HOME from Amazon Corretto
ARG JAVA_HOME="/usr/lib/jvm/default-jvm"
ARG USER="unitycatalog"
Expand Down
0