1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 4e31aa37..b1b00a7a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,7 +4,7 @@ RUN apk add --no-cache make gcc g++ python cairo-dev jpeg-dev pango-dev giflib-d
WORKDIR /usr/src/fosscord-api
COPY package.json .
COPY package-lock.json .
-RUN npm rebuild bcrypt --build-from-source && npm rebuild canvas --build-from-source
+RUN npm rebuild bcrypt --build-from-source && npm install canvas --build-from-source
RUN npm install
COPY . .
EXPOSE 3001
|