Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions fastapi-postgres/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ Keploy can be installed on Linux directly and on Windows with the help of WSL. B
docker-compose up -d
```

> Note: Update the `SQLALCHEMY_DATABASE_URL` in the `database.py` file if you want to use a keploy with docker.

### Capture the Testcases

This command will start the recording of API calls using ebpf:-
Expand Down
6 changes: 3 additions & 3 deletions flask-mongo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Python image as the base image
FROM python:3.10.12
FROM python:3.9

# Set the working directory within the container
WORKDIR /app
Expand All @@ -11,7 +11,7 @@ COPY . .
RUN pip3 install -r requirements.txt

# Expose the port that the Flask app will run on
EXPOSE 5000
EXPOSE 6000

# Start the Flask application
CMD ["python3", "app.py"]
CMD ["python3", "app.py"]
Loading