diff options
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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"] |