Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added web accessibility dependencies to dockerfile. #30

Merged
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
4 changes: 4 additions & 0 deletions src/jekyll-devcontainer/src/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
FROM --platform=linux/amd64 mcr.microsoft.com/devcontainers/jekyll:2-bullseye
LABEL org.opencontainers.image.source=https://github.com/NHSDigital/nhs-notify-repository-template

COPY packages.txt packages.txt

RUN apt-get update && xargs apt-get -y install < packages.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@
}
},
"features": {
"./nhsnotify": {},
"./nhsnotify": {
"version": "1.0.1"
},
"ghcr.io/devcontainers/features/aws-cli:1": {
"version": "latest"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"id": "nhsnotify",
"name": "Notify Custom",
"postCreateCommand": "zsh /postcreatecommand.sh",
"version": "1.0.0"
"version": "1.0.1"
}
36 changes: 36 additions & 0 deletions src/jekyll-devcontainer/src/.devcontainer/packages.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
ca-certificates
fonts-liberation
libasound2
libatk-bridge2.0-0
libatk1.0-0
libc6
libcairo2
libcups2
libdbus-1-3
libexpat1
libfontconfig1
libgbm1
libgcc1
libglib2.0-0
libgtk-3-0
libnspr4
libnss3
libpango-1.0-0
libpangocairo-1.0-0
libstdc++6
libx11-6
libx11-xcb1
libxcb1
libxcomposite1
libxcursor1
libxdamage1
libxext6
libxfixes3
libxi6
libxrandr2
libxrender1
libxss1
libxtst6
lsb-release
wget
xdg-utils
Loading