Hi - I'm trying to create a docker image that will support Neo4j and Golang. Here is my Dockerfile
'''
FROM neo4j:latest
MAINTAINER dmazzoni davem@ltsnet.net
RUN apt-get -y update
RUN apt-get -y upgrade
RUN apt-get install -y build-essential
FROM gol...