-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile
More file actions
17 lines (14 loc) · 621 Bytes
/
Dockerfile
File metadata and controls
17 lines (14 loc) · 621 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM ubuntu:22.04
RUN apt-get update && \
apt-get install -y coreutils wget zip libfontconfig1 && \
apt-get purge --auto-remove && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Download and unzip Godot v4.4.1
RUN wget https://github.com/godotengine/godot/releases/download/4.4.1-stable/Godot_v4.4.1-stable_linux.x86_64.zip && \
unzip Godot_v4.4.1-stable_linux.x86_64.zip && \
mv Godot_v4.4.1-stable_linux.x86_64 /usr/bin/godot && \
rm Godot_v4.4.1-stable_linux.x86_64.zip
WORKDIR /opt/exercism/gdscript/test-runner
COPY . .
ENTRYPOINT ["/opt/exercism/gdscript/test-runner/bin/run.sh"]