From 318c213573ccc1e85e48a60002e694716388be64 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Fri, 23 Mar 2018 20:26:46 -0600 Subject: Move docker from build dir to docker --- docker/Dockerfile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 docker/Dockerfile (limited to 'docker/Dockerfile') diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..e31cb36 --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,31 @@ +FROM ubuntu:16.04 +MAINTAINER Cody Hiar + +# Needed for better experience in container terminal +ENV TERM=xterm-256color + +# Update and install +RUN apt-get update && apt-get install -y \ + git \ + wget \ + # for cal utility + bsdmainutils \ + # Python + python3-dev \ + python3-pip + +# Add the project requirements +ADD requirements.txt /opt/requirements.txt + +# # Install the requirements, remove 3 for wagtail +RUN /bin/bash -c 'cd /opt \ + && pip3 install -r requirements.txt' + +ADD config.json /opt/config.json + +# change to /opt for the working directory, you should mount the local dir volume here +WORKDIR /opt + +# Add the entry script +ADD entry.sh /opt/ +RUN chmod 755 /opt/entry.sh -- cgit v1.2.3