personal/q3k: bump factorio

Change-Id: Id472ad9fffd09917b040ce8572b760862b4fcd2f
master
q3k 2020-01-14 13:47:26 +01:00
parent 92b48d6216
commit 9937146d25
2 changed files with 18 additions and 2 deletions

View File

@ -157,6 +157,13 @@ http_file(
downloaded_file_path = "factorio.tar.xz", downloaded_file_path = "factorio.tar.xz",
) )
http_file(
name = "factorio-headless-0.17.79",
urls = ["https://factorio.com/get-download/0.17.79/headless/linux64"],
sha256 = "9ace12fa986df028dc1851bf4de2cb038044d743e98823bc1c48ba21aa4d23df",
downloaded_file_path = "factorio.tar.xz",
)
# Go rules # Go rules
http_archive( http_archive(

View File

@ -28,11 +28,20 @@ container_image(
entrypoint = ["/entrypoint.sh"], entrypoint = ["/entrypoint.sh"],
) )
container_image(
name="0.17.79-1",
base="@prodimage-bionic//image",
tars = ["@factorio-headless-0.17.79//file"],
files = [":entrypoint.sh"],
directory = "/",
entrypoint = ["/entrypoint.sh"],
)
container_push( container_push(
name = "push_latest", name = "push_latest",
image = ":0.17.52-1", image = ":0.17.79-1",
format = "Docker", format = "Docker",
registry = "registry.k0.hswaw.net", registry = "registry.k0.hswaw.net",
repository = "app/factorio", repository = "app/factorio",
tag = "0.17.52-1", tag = "0.17.79-1",
) )