Skip to content

Commit

Permalink
feat(vtk.Dockerfile): add alternate Dockerfile with vtk support
Browse files Browse the repository at this point in the history
  • Loading branch information
devang-chauhan committed Jun 9, 2022
1 parent e7564a0 commit 6294f7e
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3.7-slim as base

RUN apt-get update \
&& apt-get -y install ffmpeg libsm6 libxext6 xvfb --no-install-recommends \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /app

COPY . .

RUN pip install -r requirements.txt || echo no requirements.txt file

0 comments on commit 6294f7e

Please sign in to comment.