Skip to content

Commit 1cfbf8c

Browse files
authored
Update Dockerfile
* update base image version to fix problem with repo * remove usage of requirements.txt as it is not existing
1 parent 25631fb commit 1cfbf8c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:21.04
1+
FROM ubuntu:22.04
22

33
# define the folder where our src should exist/ be deposited
44
ARG SRC=/python-seal
@@ -12,8 +12,7 @@ RUN apt update && \
1212
mkdir -p ${SRC}
1313

1414
# copy into container requirements and install them before rest of code
15-
COPY ./requirements.txt ${SRC}/.
16-
RUN pip3 install -r ${SRC}/requirements.txt
15+
RUN pip3 install numpy pybind11
1716

1817
# copy everything into container now that requirements stage is complete
1918
COPY . ${SRC}

0 commit comments

Comments
 (0)