mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-02-02 20:14:44 +01:00
Fixing tar issues
This commit is contained in:
parent
89ef301d3d
commit
87d1c4b0a3
13
Dockerfile
13
Dockerfile
@ -6,11 +6,14 @@ WORKDIR /opt
|
|||||||
|
|
||||||
COPY ./smart_launch.sh /opt
|
COPY ./smart_launch.sh /opt
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN echo "# Installing WGET" && \
|
||||||
apt-get install -y wget && \
|
apt-get update && \
|
||||||
wget --no-check-certificate -o factorio.tar.gz https://www.factorio.com/get-download/0.12.25/headless/linux64 &&\
|
apt-get install -y curl && \
|
||||||
tar -xf factorio.tar.gz && \
|
echo "# Downloading and unzipping factorio" && \
|
||||||
rm -rf factorio.tar.gz && \
|
curl -L -k https://www.factorio.com/get-download/0.12.25/headless/linux64 | tar -xzf - && \
|
||||||
|
echo "# Cleaning" && \
|
||||||
|
apt-get remove -y --purge curl && \
|
||||||
|
apt-get autoremove --purge && \
|
||||||
apt-purge-build && \
|
apt-purge-build && \
|
||||||
apt-clean
|
apt-clean
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user