Skip to content

Commit

Permalink
Share my incompetence
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Oct 8, 2024
1 parent ad82458 commit 3b3a4fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend-py/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ WORKDIR /app
COPY pyproject.toml poetry.lock ./
RUN pip install poetry==1.6.1
RUN poetry install --no-root -vvv --without dev --sync
RUN pip install fastapi[standard]


# Deploy
Expand All @@ -33,5 +34,4 @@ COPY ./src ./src
HEALTHCHECK --interval=300s --timeout=10s CMD curl -f http://localhost:3000
USER 1001

# CMD ["sh", "-c", "uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "3000", "--workers", "1", "--server-header", "--date-header", "--limit-concurrency", "1000","--log-config", "./logger.conf"]
CMD ["fastapi", "run", "app/main.py", "--port", "3000"]

0 comments on commit 3b3a4fe

Please sign in to comment.