Skip to content

Commit

Permalink
fix: dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gmguarino committed Apr 8, 2024
1 parent 910596b commit ce70c7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ENV PATH="${PATH}:${POETRY_HOME}/bin"
WORKDIR /app

# COPY ./d4g-utils /app/d4g-utils
COPY ./pinkbombs /./pinkbombs
COPY ./pinkbombs ./pinkbombs
COPY main.py ./main.py
COPY poetry.lock ./poetry.lock
COPY pyproject.toml ./pyproject.toml
Expand All @@ -24,4 +24,4 @@ RUN python -m venv ${VIRTUAL_ENV}
RUN poetry install

EXPOSE 8000
ENTRYPOINT [ "poetry", "run", "uvicorn", "main:app" ]
ENTRYPOINT [ "poetry", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]

0 comments on commit ce70c7e

Please sign in to comment.