Created
February 17, 2023 10:05
-
-
Save mandrasch/a0bc5cdfc6b213f5264885120b25bbaf to your computer and use it in GitHub Desktop.
Docker fix for M1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fix for https://github.com/andreabisello/pa11y-dashboard-docker-container | |
# based on https://stackoverflow.com/a/71452266, currently fails with | |
# "no such service: database" | |
FROM node:15.7.0-stretch-slim | |
# Dependencies are required to run puppeteer | |
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y libnss3 libgconf-2-4 gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 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 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget net-tools git | |
# old | |
# RUN git clone https://github.com/pa11y/dashboard.git && cd dashboard && npm i | |
# new, without npm i: | |
RUN git clone https://github.com/pa11y/dashboard.git && cd dashboard && ls -ls | |
# this is required because it loads the correct configuration file | |
ENV NODE_ENV ${NODE_ENV:-production} | |
# Fix https://stackoverflow.com/a/71452266 | |
# USER node # non-root user that comes with `node` images. | |
#COPY --chown=node package.json . | |
# COPY --chown=node package-lock.json . | |
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true | |
ENV PUPPETEER_EXECUTABLE_PATH /usr/bin/chromium | |
WORKDIR /dashboard | |
RUN npm install | |
# eo fix | |
COPY production.json /dashboard/config/production.json | |
CMD PORT=4000 node index.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment