Skip to content

Commit 51a9757

Browse files
committed
Use debian to build the Docker image
Fixes not having certain OS capabilities to build some packages.
1 parent 3036bab commit 51a9757

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Builder
2-
FROM node:10-alpine as builder
2+
FROM node:10 as builder
33

44
# Support custom branches of the react-sdk and js-sdk. This also helps us build
55
# images of riot-web develop.
@@ -9,7 +9,7 @@ ARG REACT_SDK_BRANCH="master"
99
ARG JS_SDK_REPO="https://github.com/matrix-org/matrix-js-sdk.git"
1010
ARG JS_SDK_BRANCH="master"
1111

12-
RUN apk add --no-cache git dos2unix
12+
RUN apt-get update && apt-get install -y git dos2unix
1313

1414
WORKDIR /src
1515

0 commit comments

Comments
 (0)