Files
invariant-gateway/gateway/Dockerfile.gateway
T

16 lines
230 B
Docker

FROM python:3.12
WORKDIR /srv/gateway
COPY pyproject.toml ./pyproject.toml
COPY gateway/ ./
COPY README.md ./README.md
RUN pip install --no-cache-dir .
RUN chmod +x /srv/gateway/run.sh
# Run the application
CMD ["./run.sh"]