Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix: fix tests in ansible free image (#1391)
Browse files Browse the repository at this point in the history
  • Loading branch information
aht007 authored Dec 7, 2022
1 parent 36ab334 commit e854b2d
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/a11y_reqs.sh
Original file line number Diff line number Diff line change
@@ -9,4 +9,4 @@ url="https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodrive
curl -s -L "$url" | tar -xz
chmod +x geckodriver

sudo mv geckodriver "$INSTALL_DIR"
mv geckodriver "$INSTALL_DIR"
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -11,7 +11,11 @@ RUN apt-get update && apt-get install --no-install-recommends -qy \
libmysqlclient-dev \
libssl-dev \
# needed by phantomjs
libfontconfig && \
libfontconfig \
# needed by i18n tests in CI
gettext \
# needed by a11y tests script
curl && \
rm -rf /var/lib/apt/lists/*

RUN locale-gen en_US.UTF-8

0 comments on commit e854b2d

Please sign in to comment.