Upgrade to java 1.8.0_292 (#398)

The version of java in openjdk:jre-8-alpine has multiple
vulnerabilities. Because it's been over a year since that image has been
updated, this switches to the openjdk:jre-8 image. This image is updated
much more frequently.

Succesfully built from my box using:

```
sudo docker build -f docker/Dockerfile -t apachepulsar/pulsar-manager:v0.3.0 .
```

I also confirmed the image still works by setting an admin password and
logging into the dashboard. I used the existing docker-compose.yml for
this test, but changed the tag to v0.3.0.
diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..8319d9d
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,4 @@
+*
+!/build/distributions/pulsar-manager.tar
+!/docker
+!/front-end/dist
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 0fb3f8a..cdaeebd 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -16,7 +16,7 @@
 # specific language governing permissions and limitations
 # under the License.
 #
-FROM openjdk:8-jre-alpine
+FROM openjdk:8-jre
 
 ARG BUILD_DATE
 ARG VCS_REF
@@ -31,13 +31,11 @@
       org.label-schema.version=$VERSION \
       org.label-schema.schema-version="1.0"
 
-RUN apk update
+RUN apt-get update
 
-RUN apk add nginx \
-  && apk add supervisor \
-  && apk add postgresql \
+RUN apt-get install --yes nginx supervisor postgresql \
   && rm  -rf /tmp/* \
-  && rm /var/cache/apk/*
+  && rm -rf /var/lib/apt/lists/*
 
 RUN mkdir -p /run/nginx
 
diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh
index fd81f03..1da2afa 100755
--- a/docker/entrypoint.sh
+++ b/docker/entrypoint.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 #
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file