Corrected xz package in Dockerfile

It should be `xz-utils` instead of `xz` (was already correct in `Dckerfile-local`)
This commit is contained in:
Matthijs
2022-02-01 15:22:03 +01:00
committed by GitHub
parent 799c2dbb82
commit eebc67464b
+1 -1
View File
@@ -9,7 +9,7 @@ VOLUME /opt/fsm-data /opt/factorio/saves /opt/factorio/mods /opt/factorio/config
EXPOSE 80/tcp 34197/udp
RUN apt-get update && apt-get install -y curl tar xz unzip jq && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y curl tar xz-utils unzip jq && rm -rf /var/lib/apt/lists/*
WORKDIR /opt