mirror of
https://github.com/invariantlabs-ai/invariant-gateway.git
synced 2026-05-18 21:28:07 +02:00
16 lines
227 B
Docker
16 lines
227 B
Docker
FROM python:3.12
|
|
|
|
WORKDIR /srv/gateway
|
|
|
|
COPY pyproject.toml ./
|
|
|
|
COPY gateway/ ./
|
|
|
|
COPY README.md /srv/gateway/README.md
|
|
|
|
RUN pip install --no-cache-dir .
|
|
|
|
RUN chmod +x /srv/gateway/run.sh
|
|
|
|
# Run the application
|
|
CMD ["./run.sh"] |