mirror of
https://github.com/invariantlabs-ai/invariant-gateway.git
synced 2026-07-06 19:07:50 +02:00
9 lines
179 B
Docker
9 lines
179 B
Docker
FROM python:3.10
|
|
|
|
COPY ./requirements.txt /srv/proxy/requirements.txt
|
|
WORKDIR /srv/proxy
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY . /srv/proxy
|
|
|
|
ENTRYPOINT ./run.sh |