Skip to content

Commit

Permalink
fix: use base image compatible with Raspbian Buster
Browse files Browse the repository at this point in the history
Kudos to @PeteBa for finding the fix.

Closes #917
  • Loading branch information
mKeRix committed Sep 23, 2021
1 parent 793d455 commit 75ea381
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,10 +1,10 @@
FROM node:16-alpine as build
FROM node:16-alpine3.12 as build
ARG ROOM_ASSISTANT_VERSION=latest

RUN apk add --no-cache python3 make g++ libusb-dev eudev-dev avahi-dev cairo-dev jpeg-dev pango-dev giflib-dev
RUN npm install -g --unsafe-perm room-assistant@$ROOM_ASSISTANT_VERSION

FROM node:16-alpine
FROM node:16-alpine3.12

WORKDIR /room-assistant

Expand Down
4 changes: 2 additions & 2 deletions dev.Dockerfile
@@ -1,11 +1,11 @@
FROM node:16-alpine as build
FROM node:16-alpine3.12 as build
WORKDIR /room-assistant

RUN apk add --no-cache python3 make g++ libusb-dev eudev-dev avahi-dev cairo-dev jpeg-dev pango-dev giflib-dev
COPY ./*.tgz /room-assistant/
RUN npm install -g --unsafe-perm *.tgz

FROM node:16-alpine
FROM node:16-alpine3.12

WORKDIR /room-assistant

Expand Down

0 comments on commit 75ea381

Please sign in to comment.