update template code

This commit is contained in:
phatakmr
2025-10-13 14:48:00 +02:00
parent c9d159fcc6
commit 8f637a4a0d
46 changed files with 2955 additions and 1 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
# 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