Skip to content

Commit

Permalink
dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-Morgan committed Oct 12, 2023
1 parent b5ceafb commit f72dede
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion 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 apt install python3.10
RUN 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
RUN unzip blender-connector.zip -d "$HOME/.config/blender/3.3/"

0 comments on commit f72dede

Please sign in to comment.