Files
mmp_wise2526_franksim/Dockerfile
2025-10-13 14:48:00 +02:00

11 lines
341 B
Docker

# you can safely ignore this file for the course
# this dockerfile is used for the test runner
# you do not need docker for this course
# use just a standard python container, no CUDA will be available for the tests
FROM python:3.10
COPY requirements.txt .
RUN pip install -U pip
RUN pip install -r requirements.txt
RUN rm requirements.txt