Skip to content

Commit

Permalink
Update base image
Browse files Browse the repository at this point in the history
  • Loading branch information
RetGal committed Jul 6, 2024
1 parent c29fe88 commit a22d458
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
FROM python:3.11-alpine
LABEL maintainer="retgal"

# set a directory for the app
Expand All @@ -10,7 +10,7 @@ ENV BALANCER_CONFIG "/opt/data/config"
VOLUME /opt/data

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt

COPY balancer.py ./

Expand Down

0 comments on commit a22d458

Please sign in to comment.