summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--Dockerfile4
2 files changed, 4 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index affc3a9a..dbba6dd5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -41,5 +41,7 @@ bing.py
bing2.py
.DS_Store
MANIFEST.in
+lab/*
+lab
# Emacs crap
*~ \ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
index ffd8bf1c..f219c256 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -27,10 +27,10 @@ RUN pip install --upgrade pip && pip install -r requirements.txt
COPY . /app/
# Install additional requirements specific to the interference module/package.
-RUN pip install -r interference/requirements.txt
+RUN pip install -r etc/interference/requirements.txt
# Expose port 1337
EXPOSE 1337
# Define the default command to run the app using Python's module mode.
-CMD ["python", "-m", "interference.app"] \ No newline at end of file
+CMD ["python", "-m", "etc.interference.app"] \ No newline at end of file