balena-supervisor/test/lib/dbus/Dockerfile
Felipe Lalanne 819e184095 Setup environment for dbus tests
Change-type: patch
2022-10-17 11:24:15 -03:00

11 lines
200 B
Docker

FROM node:16-alpine
RUN apk add --update python3 dbus-dev make g++ libgcc
WORKDIR /usr/src/app
COPY package.json *.ts tsconfig.json entry.sh ./
RUN npm install && npm run build
CMD ["./entry.sh"]