mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-12 10:34:17 +00:00
dbd1b1b181
For easier local development and training purposes, this adds an editable dev container for the connector proxy demo as well as a local example connector that can be changed in the live environment without needing to poetry install a connector for another location.
9 lines
170 B
Docker
9 lines
170 B
Docker
FROM python:3.11.6-slim-bookworm 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"]
|