diff --git a/Dockerfile b/Dockerfile index 1a755b2..2a204d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,11 @@ FROM python:3.10 WORKDIR /opt/stroopwafel -COPY . ./ +# Do the requirements first for better caching +COPY requirements.txt . RUN pip install -r requirements.txt +COPY . ./ + CMD python -m unittest tests \ No newline at end of file