diff --git a/app/Dockerfile b/app/Dockerfile index cd47c26..c49712d 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -2,8 +2,7 @@ FROM ubuntu:latest MAINTAINER wes kerfoot "wjak56@gmail.com" RUN apt-get update -y -RUN apt-get install -y python3-pip python3-dev build-essential sassc jq -RUN apt-get install -y curl +RUN apt-get install -y python3-pip python3-dev build-essential sassc jq curl RUN curl -sL https://deb.nodesource.com/setup_11.x | bash RUN apt-get install -y nodejs RUN npm install -g uglifycss uglifyjs diff --git a/app/styles/riotblog.scss b/app/styles/riotblog.scss index 00cc754..c8664cb 100644 --- a/app/styles/riotblog.scss +++ b/app/styles/riotblog.scss @@ -2,7 +2,7 @@ $brandingBG: rgba(103, 173, 219, 0.40); $brandingBG2: rgba(75, 147, 193, 0.65); $brandingBG3: rgba(103, 173, 219, 0.27); -$branding: green; +$branding: black; $branding2: #4b93c1; $branding3: #1b4c6c; diff --git a/docker-compose.yml b/docker-compose.yml index 3428478..6c70a60 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,6 +16,8 @@ services: build: app ports: - "80" + env_file: + - ".env" network_mode: host depends_on: - "couch"