Pin Python 3.9 and give dockerfile a little breathing room

This commit is contained in:
Jim Fingal 2020-11-07 18:25:31 -08:00
parent ca1aa1f70f
commit 3056441b50

View file

@ -1,10 +1,15 @@
FROM python:3
ENV PYTHONUNBUFFERED 1
FROM python:3.9
ENV PYTHONUNBUFFERED 1
RUN mkdir /app
RUN mkdir /app/static
RUN mkdir /app/images
WORKDIR /app
COPY requirements.txt /app/
RUN pip install -r requirements.txt
COPY ./bookwyrm /app
COPY ./celerywyrm /app