summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index b84b3b3c..b607ac2c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -29,5 +29,8 @@ COPY . /app/
# Install additional requirements specific to the interference module/package.
RUN pip install -r 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", "interference.app"]