diff --git a/landing-page/html/index.html b/landing-page/html/index.html
index aa6d02ff1..d1ae18bad 100644
--- a/landing-page/html/index.html
+++ b/landing-page/html/index.html
@@ -512,8 +512,8 @@
ESS Suppliers
EMBC Suppliers who are registered to provide goods/services to evacuees during an emergency can submit their invoices/receipts by clicking the button below.
-
- Maintenance In Progress Check back at 2pm
+ Submit Invoices/Receipts
+
Watch Training Video
diff --git a/pdf-service/Dockerfile b/pdf-service/Dockerfile
index 4c221383d..76db2849d 100644
--- a/pdf-service/Dockerfile
+++ b/pdf-service/Dockerfile
@@ -1,20 +1,19 @@
-FROM docker-remote.artifacts.developer.gov.bc.ca/node:10-slim
+FROM node:8-slim
# See https://crbug.com/795759
-RUN apt-get update && apt-get install -yq libgconf-2-4 gnupg gnupg1 gnupg2
+RUN apt-get update && apt-get install -yq libgconf-2-4
# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer
# installs, work.
-RUN apt-get update \
- && apt-get install -y wget --no-install-recommends \
+RUN apt-get update && apt-get install -y wget --no-install-recommends \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
- && apt-get purge --auto-remove -y \
+ && apt-get purge --auto-remove -y curl \
&& rm -rf /src/*.deb
# It's a good idea to use dumb-init to help prevent zombie chrome processes.