Files
invariant-gateway/gateway/Dockerfile.gateway
Luca Beurer-Kellner dc7d19d510 signal handling
2025-03-11 15:08:05 +01:00

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"]