diff options
author | Cody Hiar <codyfh@gmail.com> | 2018-03-23 20:26:46 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2018-03-23 20:26:46 -0600 |
commit | 318c213573ccc1e85e48a60002e694716388be64 (patch) | |
tree | 7b22911569f2d61849155b9b59b9219fccc07f09 /build | |
parent | aa6e200bc7844aa2b7b88a451a9e95be4f2cebb0 (diff) |
Move docker from build dir to docker
Diffstat (limited to 'build')
-rw-r--r-- | build/Dockerfile | 31 | ||||
-rw-r--r-- | build/entry.sh | 3 |
2 files changed, 0 insertions, 34 deletions
diff --git a/build/Dockerfile b/build/Dockerfile deleted file mode 100644 index e31cb36..0000000 --- a/build/Dockerfile +++ /dev/null @@ -1,31 +0,0 @@ -FROM ubuntu:16.04 -MAINTAINER Cody Hiar <codyfh@gmail.com> - -# 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 diff --git a/build/entry.sh b/build/entry.sh deleted file mode 100644 index 09a943f..0000000 --- a/build/entry.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -while true; do echo hi; sleep 1; done; |