Skip to content

Commit

Permalink
change docker base image
Browse files Browse the repository at this point in the history
  • Loading branch information
0xaaaaaron committed Jan 26, 2024
1 parent 807f2a7 commit 6c62a0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-alpine as builder
FROM python:3.8-slim as builder

WORKDIR /app

Expand All @@ -13,7 +13,7 @@ COPY requirements.txt requirements.txt

RUN pip install -r requirements.txt && pip install .

FROM python:3.8-alpine as final
FROM python:3.8-slim as final

COPY --from=builder /app/venv /app/venv
ENV PATH="/app/venv/bin:${PATH}"
Expand Down

0 comments on commit 6c62a0c

Please sign in to comment.