update porter Dockerfile so it builds

pull/2873/head
Damon Ciarelli 2022-03-23 11:24:37 -07:00 committed by KPrasch
parent cb49fd4c03
commit 03f598f987
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
FROM python:3.8.7-slim
FROM python:3.8.12-slim
# Update
RUN apt update -y && apt upgrade -y
RUN apt install patch gcc libffi-dev wget git -y
RUN apt-get update -y && apt upgrade -y
RUN apt-get install patch gcc libffi-dev wget git -y
WORKDIR /code
COPY . /code