Rodolfo Castelo M.
Rodolfo Castelo M.
@zahornyak try this: ``` resource "docker_image" "dockerfile" { name = "${aws_ecr_repository.ecr.repository_url}:latest" build { context = "${path.module}/files" tag = ["${aws_ecr_repository.ecr.repository_url}:latest"] } triggers = { dir_sha1 = sha1(join("", [for f in fileset("${path.module}/files",...
@zahornyak I think if you use the Dockerfile inside of the module you need to specify just "files" in context, something like this: ``` build { context = "files/" tag...
Show me more information. I runed it on a spanish-based server and I has one error 'cause The language condition it's different.