Skip to content
This repository has been archived by the owner on Feb 10, 2022. It is now read-only.

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
The operating system is set to stretch, this way we avoid errors when changing the base of node:8
  • Loading branch information
ortizman authored Apr 3, 2019
1 parent c00dcbc commit 7ed50cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:8 AS base
FROM node:8-stretch AS base
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5
RUN echo "deb http://repo.mongodb.org/apt/debian jessie/mongodb-org/3.6 main" | tee /etc/apt/sources.list.d/mongodb-org-3.6.list
RUN echo "deb http://repo.mongodb.org/apt/debian stretch/mongodb-org/3.6 main" | tee /etc/apt/sources.list.d/mongodb-org-3.6.list
RUN apt-get update -qq && \
apt-get upgrade -qqy && \
apt-get install -qqy \
Expand Down

0 comments on commit 7ed50cd

Please sign in to comment.