From 1cfbf8c4ec4967e117c2189871955fb7605c2393 Mon Sep 17 00:00:00 2001 From: zerbarus Date: Fri, 2 Sep 2022 10:16:47 +0200 Subject: [PATCH] Update Dockerfile * update base image version to fix problem with repo * remove usage of requirements.txt as it is not existing --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 456038d..73b49bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:21.04 +FROM ubuntu:22.04 # define the folder where our src should exist/ be deposited ARG SRC=/python-seal @@ -12,8 +12,7 @@ RUN apt update && \ mkdir -p ${SRC} # copy into container requirements and install them before rest of code -COPY ./requirements.txt ${SRC}/. -RUN pip3 install -r ${SRC}/requirements.txt +RUN pip3 install numpy pybind11 # copy everything into container now that requirements stage is complete COPY . ${SRC}