Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rb-x authored Sep 27, 2024
1 parent 4b32873 commit 5c37d73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Build command: docker build -t ldeep .
# Execute with: docker run --rm ldeep $args

FROM python:3.8-slim-buster
FROM python:3.12-slim
WORKDIR /ldeep
RUN apt-get update && apt-get install -y libkrb5-dev gcc python3-dev
COPY . .
RUN pip install -r requirements.txt
RUN [ "python", "setup.py", "install" ]
RUN PDM_BUILD_SCM_VERSION=$(cat VERSION) pip install .
ENTRYPOINT [ "ldeep" ]

0 comments on commit 5c37d73

Please sign in to comment.