Skip to content
This repository has been archived by the owner on May 14, 2023. It is now read-only.

Update script to install libraries #22

Merged
merged 1 commit into from
Nov 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
FROM alpine:latest
RUN apk update
RUN apk add --update --no-cache blas blas-dev build-base ca-certificates clang clang-dev cmake linux-headers openexr openexr-dev pkgconf wget
RUN apk add --update --no-cache build-base ca-certificates clang clang-dev cmake linux-headers pkgconf wget
RUN apk add --update --no-cache python3 py3-pip && ln -sf python3 /usr/bin/python
RUN pip3 -q install pip --upgrade
RUN pip3 install --no-cache-dir setuptools
RUN pip3 install --no-cache-dir numpy pandas matplotlib seaborn
RUN mkdir src
WORKDIR /src/
COPY . .
Expand Down