From e2bf240d41e8f5453ded6276252265bdada7de25 Mon Sep 17 00:00:00 2001 From: Tobias Persson Date: Fri, 30 Oct 2020 07:53:29 +0100 Subject: [PATCH] Upgrade etos api to python 3.9.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index af53000..eba9403 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.8.3-buster AS build +FROM python:3.9.0-buster AS build COPY . /src WORKDIR /src RUN python3 setup.py bdist_wheel -FROM python:3.8.3-slim-buster +FROM python:3.9.0-slim-buster COPY --from=build /src/dist/*.whl /tmp # hadolint ignore=DL3013