Files
stroopwafel/Dockerfile
T
2022-12-06 01:39:17 +01:00

12 lines
192 B
Docker

FROM python:3.10
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