Skip to content

Commit

Permalink
fix backend dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
zwphyro committed Dec 10, 2024
1 parent 0d14ce2 commit deed6c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gighunt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ WORKDIR /app

COPY . .

RUN pip install --no-cache-dir poetry==1.8.5 && poetry install --no-cache-dir
RUN pip install --no-cache-dir poetry==1.8.5 && poetry install

CMD ["poetry", "run", "start-backend"]
2 changes: 1 addition & 1 deletion hello_world/gighunt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /app

COPY pyproject.toml poetry.lock ./

RUN pip install poetry && poetry install --no-root
RUN pip install --no-cache-dir poetry==1.8.5 && poetry install --no-root

COPY . .

Expand Down

0 comments on commit deed6c6

Please sign in to comment.