mirror of
https://github.com/deepset-ai/haystack.git
synced 2026-01-08 04:56:45 +00:00
* Create Dockerfile and hcl config to build Xpdf * Create workflow to build Xpdf Docker image * Update Dockerfile.base to not build Xpdf * Fix CWD removal and arg casing * Fix ARG setting
13 lines
229 B
HCL
13 lines
229 B
HCL
variable "XPDF_VERSION" {
|
|
default = "4.04"
|
|
}
|
|
|
|
target "xpdf" {
|
|
dockerfile = "Dockerfile.xpdf"
|
|
tags = ["deepset/xpdf:latest"]
|
|
args = {
|
|
xpdf_version = "${XPDF_VERSION}"
|
|
}
|
|
platforms = ["linux/amd64", "linux/arm64"]
|
|
}
|