Bump base image version, add cups stuff

This commit is contained in:
Ville Ranki 2020-11-23 00:19:43 +02:00
parent 578ec4908e
commit 7fcd4fd5bf
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
FROM python:3.7-slim
FROM python:3.8-slim
WORKDIR /bot
RUN apt update
RUN apt -y install libcups2-dev python3-dev gcc
COPY Pipfile .
RUN pip install pipenv && \