mirror of
https://github.com/invariantlabs-ai/invariant-gateway.git
synced 2026-02-12 14:32:45 +00:00
14 lines
289 B
Docker
14 lines
289 B
Docker
FROM python:3.10
|
|
|
|
COPY ./requirements.txt /srv/gateway/requirements.txt
|
|
WORKDIR /srv/gateway
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY . /srv/gateway
|
|
|
|
# Ensure run.sh is executable
|
|
RUN chmod +x /srv/gateway/run.sh
|
|
WORKDIR /srv/gateway
|
|
|
|
# Run the application
|
|
CMD ["./run.sh"] |