Skip to content

Commit 5cde6d8

Browse files
grippgripp
gripp
authored and
gripp
committed
Changed Dockerfile to use nodejs-lts instead of nodejs-lts-10 to fix a build issue (mayeaux#433).
1 parent b804a68 commit 5cde6d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM bougyman/voidlinux as void
2-
RUN xbps-install -Syu git tar python nodejs-lts-10 base-devel
2+
RUN xbps-install -Syu git tar python nodejs-lts base-devel
33
COPY app* package* .env.settings.sample .env.private.sample copySettingsAndPrivateFiles.js Procfile routes.js /app/
44
COPY bin /app/bin/
55
COPY caching /app/caching/
@@ -28,7 +28,7 @@ RUN npm i --production && \
2828
FROM bougyman/voidlinux
2929
WORKDIR /app/
3030
COPY --from=builder /app/ /app/
31-
RUN xbps-install -Syu tar python nodejs-lts-10 && rm -rf /var/cache/xbps && \
31+
RUN xbps-install -Syu tar python nodejs-lts && rm -rf /var/cache/xbps && \
3232
ln -s /app/node_modules/ffprobe-static/bin/linux/x64/ffprobe /app/node_modules/@ffmpeg-installer/linux-x64/ffmpeg /usr/local/bin/
3333
EXPOSE 8080
3434
CMD ["npm", "start"]

0 commit comments

Comments
 (0)