Skip to content

Commit

Permalink
fixup! Update to Atoti Python API 0.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tibdex committed Feb 14, 2024
1 parent 1682e68 commit da3445f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ ENV PORT=80
COPY --from=builder /usr/local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages
COPY app app

ENTRYPOINT ["python", "-O", "-u", "-m", "app"]
ENTRYPOINT ["python", "-u", "-m", "app"]

EXPOSE $PORT
4 changes: 1 addition & 3 deletions tests/docker/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ def poetry_executable_path_fixture() -> str:


@pytest.fixture(name="docker_image_name", scope="session")
def docker_image_name_fixture(
docker_executable_path: str, project_name: str
) -> Generator[str, None, None]:
def docker_image_name_fixture(docker_executable_path: str, project_name: str) -> str:
tag = f"{project_name}:{uuid4()}"
build_image_output = run_command(
[docker_executable_path, "build", "--tag", tag, "."]
Expand Down

0 comments on commit da3445f

Please sign in to comment.