mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-11-02 10:49:30 +00:00
13 lines
245 B
HCL
13 lines
245 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"]
|
||
|
|
}
|