Skip to content

Commit 90805ba

Browse files
committed
Change base image to debian:jessie-slim because godot engine dependencies.
1 parent ded0f06 commit 90805ba

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Dockerfile

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
1-
FROM frolvlad/alpine-glibc
1+
FROM debian:jessie-slim
22

33
MAINTAINER Marius André Elsfjordstrand Beck <[email protected]>
44

55
ARG GODOT_VERSION=2.1.2
66
ARG GODOT_VARIANT=stable
77

8-
RUN wget \
8+
RUN apt-get update \
9+
&& apt-get install -y wget unzip \
10+
&& wget \
911
"http://download.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-${GODOT_VARIANT}_linux_server.64.zip" \
1012
"http://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-${GODOT_VARIANT}_export_templates.tpz" \
1113
&& unzip Godot_v*_linux_server.64.zip \
1214
&& mv Godot_v*_linux_server.64 /bin/godot \
1315
&& mkdir ~/.godot \
1416
&& unzip -d ~/.godot Godot_v*_export_templates.tpz \
15-
&& rm *.zip *.tpz
17+
&& rm -f *.zip *.tpz \
18+
&& apt-get purge -y --auto-remove wget unzip \
19+
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)