Files
invariant-gateway/gateway/Dockerfile.gateway
T
2025-03-05 14:35:39 +01:00

12 lines
249 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
ENTRYPOINT ./run.sh