From 65860a090a4b37f7a699005da9216935dd402356 Mon Sep 17 00:00:00 2001 From: Philip Belesky Date: Thu, 16 Aug 2018 10:35:36 +1000 Subject: [PATCH] Bump docker image postgres/node version --- Dockerfile | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 55486c53a2b..951d41496e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ENV PYTHONUNBUFFERED 1 # Setup Node/NPM RUN apt-get update RUN apt-get install -y curl -RUN curl -sL https://deb.nodesource.com/setup_6.x | bash && apt-get install -y nodejs +RUN curl -sL https://deb.nodesource.com/setup_8.x | bash && apt-get install -y nodejs # Copy all our files into the baseimage and cd to that directory RUN mkdir /tcd diff --git a/docker-compose.yml b/docker-compose.yml index 7da8666adb0..b7d977a2fa3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,7 @@ version: '3' services: db: - image: postgres:9.6 + image: postgres:10 environment: - POSTGRES_PASSWORD=tabbycat - POSTGRES_USER=tabbycat