Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
BattlefieldDuck committed Mar 13, 2024
1 parent 6b9dad4 commit 8b989ba
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,9 +1,10 @@
# Dockerfile
FROM python:3.12-alpine
FROM python:3.11-alpine

WORKDIR /app

COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
RUN apk add --no-cache python3-dev \
&& pip install --no-cache-dir -r requirements.txt

COPY . .

0 comments on commit 8b989ba

Please sign in to comment.