diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000000000000000000000000000000000000..93f13619916123cf5434dab2ffcc8263c7420af1
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,2 @@
+node_modules
+npm-debug.log
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..c42a3e629b54197c44cef15cf5e5e577e9b7f5b7
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,56 @@
+FROM node:12
+
+WORKDIR /usr/src/app
+
+RUN apt-get update \
+    && apt-get -y --no-install-recommends install \
+        gconf-service \
+        libasound2 \
+        libatk1.0-0 \
+        libc6 \
+        libcairo2 \
+        libcups2 \
+        libdbus-1-3 \
+        libexpat1 \
+        libfontconfig1 \
+        libgcc1 \
+        libgconf-2-4 \
+        libgdk-pixbuf2.0-0 \
+        libglib2.0-0 \
+        libgtk-3-0 \
+        libnspr4 \
+        libpango-1.0-0 \
+        libpangocairo-1.0-0 \
+        libstdc++6 \
+        libx11-6 \
+        libx11-xcb1 \
+        libxcb1 \
+        libxcomposite1 \
+        libxcursor1 \
+        libxdamage1 \
+        libxext6 \
+        libxfixes3 \
+        libxi6 \
+        libxrandr2 \
+        libxrender1 \
+        libxss1 \
+        libxtst6 \
+        ca-certificates \
+        fonts-liberation \
+        libappindicator1 \
+        libnss3 \
+        lsb-release \
+        xdg-utils \
+        wget \
+    && apt-get clean \
+    && rm -rf /var/lib/apt/lists/*
+
+COPY package*.json ./
+
+RUN npm install
+
+COPY . .
+
+USER nobody
+
+CMD [ "node", "index.js" ]
diff --git a/index.js b/index.js
index ea26cd59a8098ad0088f7ff8090695f2b4d84f00..cd06bf104f2ee864eff32f64375d6927ae1a26ee 100644
--- a/index.js
+++ b/index.js
@@ -32,7 +32,13 @@ async function sendSMS(item) {
 async function run() {
   console.log('');
   console.log(`Starting at ${moment().toISOString()}`);
-  const browser = await puppeteer.launch();
+  const browser = await puppeteer.launch(
+    {
+      args: [
+        '--no-sandbox'
+      ]
+    }
+  );
 
   const page = await browser.newPage();