mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-12 02:24:15 +00:00
9 lines
159 B
Docker
9 lines
159 B
Docker
FROM python:3.12-slim AS base
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install --upgrade pip
|
|
RUN pip install poetry==1.8.1 pytest-xdist==3.5.0
|
|
|
|
CMD ["./bin/run_server_locally"]
|