Files
speckle_automate-basic_clas…/Dockerfile
T
Jonathon Broughton 87e3d72e54 Changed Base image
2023-11-09 21:19:45 +00:00

11 lines
449 B
Docker

# We use a pymesh base image build with an acceptable python and will add our code to it. For more details, see https://hub.docker.com/_/python
FROM topologicalhurt/pymesh-3.10:v1.1
# We install poetry to generate a list of dependencies which will be required by our application
RUN pip install poetry
COPY . .
# Using poetry, we generate a list of requirements, save them to requirements.txt, and then use pip to install them
RUN poetry install