Skip to content

Commit

Permalink
dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-Morgan committed Oct 13, 2023
1 parent b5ceafb commit 4e8135a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM nytimes/blender:latest
FROM nytimes/blender:3.3.1-cpu-ubuntu18.04

RUN pip install poetry
RUN apt-get install python3.10 && \
pip install poetry

COPY . .
RUN poetry export -f requirements.txt --output requirements.txt && pip install -r requirements.txt

RUN curl -o blender-connector.zip https://github.com/specklesystems/speckle-blender/archive/refs/tags/2.16.0-rc1.zip && \
unzip blender-connector.zip -d "$HOME/.config/blender/3.3/"

0 comments on commit 4e8135a

Please sign in to comment.