Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ FROM ubuntu:24.04

# Install packages required to run the tests:
RUN apt-get update \
&& apt-get install -y apt-utils \
&& apt-get install -y \
&& apt-get install --yes --no-install-recommends \
ca-certificates \
curl \
jq \
make \
perl \
xz-utils \
&& true
&& apt-get purge --auto-remove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Install a specific version of shellcheck:
RUN curl -sSOL https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.x86_64.tar.xz \
Expand Down
1 change: 0 additions & 1 deletion bin/run-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ docker build --rm -t exercism/yamlscript-test-runner .
docker run \
--rm \
--network none \
--read-only \
--mount type=bind,src="${solution_dir}",dst=/solution \
--mount type=bind,src="${output_dir}",dst=/output \
--mount type=tmpfs,dst=/tmp \
Expand Down
Loading