Skip to content

Commit

Permalink
update python version in dockerfile to use python 3.9 instead of 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyria committed May 27, 2022
1 parent e5ad1be commit d274c92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN mkdir -p /static \

# ------------------------------------

FROM python:3.7-slim as py-builder
FROM python:3.9-slim as py-builder

RUN apt-get update && \
apt-get install -y --no-install-recommends build-essential gcc libpq-dev libmariadb-dev
Expand All @@ -35,7 +35,7 @@ RUN pip install --upgrade pip && \

# ------------------------------------

FROM python:3.7-slim AS runtime
FROM python:3.9-slim AS runtime
LABEL maintainer="[email protected]"

ENV PATH="/venv/bin:/lb/deploy:$PATH" \
Expand Down

0 comments on commit d274c92

Please sign in to comment.