Skip to content

Commit

Permalink
fix(dev): use python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnans2006 authored and alanzhu0 committed Apr 4, 2024
1 parent 89589cc commit fcdd5de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/docker/Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.18
FROM python:3.8.19-alpine3.18

ENV TZ America/New_York
ENV C_FORCE_ROOT true
Expand All @@ -8,7 +8,7 @@ COPY requirements.txt .
COPY requirements-dev.txt .

RUN apk update && \
apk add bash git curl python3 python3-dev py3-pip build-base libpq-dev freetype-dev libffi-dev ruby-full libmagic krb5 kinit rsync nodejs npm tzdata libxml2-dev libxslt-dev && \
apk add bash git curl build-base libpq-dev freetype-dev libffi-dev ruby-full libmagic krb5 kinit rsync nodejs npm tzdata libxml2-dev libxslt-dev && \
npm install -g sass && \
ln -s /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
pip3 install -Ir requirements.txt && \
Expand Down

0 comments on commit fcdd5de

Please sign in to comment.