Skip to content

Commit

Permalink
Merge pull request #205 from MunifTanjim/optimize-dockerfile
Browse files Browse the repository at this point in the history
build: optimize dockerfile
  • Loading branch information
g0ldyy authored Nov 21, 2024
2 parents 5e4b8fa + 5266603 commit d7b92e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ RUN apk add --no-cache \
make

RUN pip install poetry
COPY . .
COPY pyproject.toml .
RUN poetry install --no-cache --no-root --without dev
COPY . .

ENTRYPOINT ["poetry", "run", "python", "-m", "comet.main"]

0 comments on commit d7b92e1

Please sign in to comment.