Skip to content

Commit

Permalink
Dockerfile Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leosfreitas committed Dec 4, 2024
1 parent 9065265 commit 20569fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function App() {

try {
const response = await fetch(
"http://0.0.0.0:8000/process-multiple-files",
"http://3.81.205.150:8000/process-multiple-files",
{
method: "POST",
body: formData,
Expand Down
2 changes: 1 addition & 1 deletion back/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["uvicorn", "main:app", "--host", "3.81.205.150", "--port", "8000"]
EXPOSE 8000

0 comments on commit 20569fc

Please sign in to comment.