Skip to content

Commit

Permalink
(perf): Convert Python base image to python:3.11-alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
lasith-kg committed Oct 27, 2024
1 parent 2ea7da6 commit b4a04e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11
FROM python:3.11-alpine

WORKDIR /app
ENTRYPOINT ["/app/entrypoint.py"]
Expand All @@ -8,4 +8,5 @@ RUN pip install poetry \
&& poetry config virtualenvs.create false \
&& poetry install

COPY . ./
COPY *.py ./
COPY test/ ./test

0 comments on commit b4a04e3

Please sign in to comment.