Skip to content

Commit

Permalink
refactor: DockerfileArchive always write files (into the tarball)
Browse files Browse the repository at this point in the history
  • Loading branch information
HofmeisterAn committed Oct 20, 2022
1 parent daf39a2 commit 08e7fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Testcontainers/Images/DockerfileArchive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public string Tar()

var tarEntry = TarEntry.CreateEntryFromFile(file);
tarEntry.Name = relativePath;
tarArchive.WriteEntry(tarEntry, true);
tarArchive.WriteEntry(tarEntry, false);
}
}
}
Expand Down

0 comments on commit 08e7fa5

Please sign in to comment.