12 lines
192 B
Docker
12 lines
192 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /opt/stroopwafel
|
|
|
|
# Do the requirements first for better caching
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . ./
|
|
|
|
CMD python -m unittest tests |