Skip to content

Commit

Permalink
backend dockerfile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rawanmahdi committed Jan 27, 2024
1 parent b1f39ad commit 8d55f8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ COPY pyproject.toml poetry.lock ./
RUN poetry config virtualenvs.create false && poetry install --no-dev

# Copy the FastAPI application into the container
COPY main.py ./
COPY . .

# Specify the command to run the FastAPI application using uvicorn
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]

0 comments on commit 8d55f8f

Please sign in to comment.