fix(dockerfile): Fix jessie-updates issues with node:8.10.0-slim image

This commit is contained in:
Erik Ziegler 2019-04-04 09:02:15 +02:00
parent 6586c03af1
commit 6c9270b3de
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,8 @@
# in the final image.
FROM node:8.10.0-slim as builder
# Fix build now that jessie-updates has been archived
RUN sed -i '/jessie-updates/d' /etc/apt/sources.list
RUN apt-get update && apt-get install -y \
curl \
g++ \

View File

@ -5,6 +5,8 @@
# in the final image.
FROM node:8.10.0-slim as builder
# Fix build now that jessie-updates has been archived
RUN sed -i '/jessie-updates/d' /etc/apt/sources.list
RUN apt-get update && apt-get install -y \
curl \
g++ \