update dockerfile

expose relevant port in dockerfile
This commit is contained in:
hcrypt 2023-09-22 17:39:59 +05:30 committed by GitHub
parent a76055652b
commit 01ae5c4280
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,5 +29,8 @@ COPY . /app/
# Install additional requirements specific to the interference module/package. # Install additional requirements specific to the interference module/package.
RUN pip install -r interference/requirements.txt 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. # Define the default command to run the app using Python's module mode.
CMD ["python", "-m", "interference.app"] CMD ["python", "-m", "interference.app"]