mirror of
https://github.com/invariantlabs-ai/invariant-gateway.git
synced 2026-02-12 22:42:45 +00: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 |