mirror of
https://github.com/invariantlabs-ai/invariant-gateway.git
synced 2026-05-16 21:03:27 +02:00
12 lines
241 B
Docker
12 lines
241 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
|
|
|
|
# Ensure run.sh is executable
|
|
RUN chmod +x /srv/proxy/run.sh
|
|
|
|
ENTRYPOINT ./run.sh |