Replies: 1 comment 1 reply
|
FROM python:3.12-slim AS builder RUN pip install --no-cache-dir --no-compile RUN rm -rf /usr/local/lib/python3.12/site-packages/awscli/examples FROM python:3.12-slim LABEL maintainer="MiniStack" RUN apt-get update WORKDIR /opt/ministack COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages COPY bin/awslocal /usr/local/bin/awslocal COPY ministack/ ministack/ RUN groupadd -r ministack && useradd -r -g ministack ministack ENV GATEWAY_PORT=4566 EXPOSE 4566 HEALTHCHECK --interval=10s --timeout=3s --start-period=5s --retries=3 ENTRYPOINT ["python", "-m", "hypercorn", "ministack.app:app", "--bind", "0.0.0.0:4566", "--keep-alive", "75"] |
Uh oh!
There was an error while loading. Please reload this page.
Hello based on the issue #411 I discovered there is a silent error in Athena... We could support it if we change to a Debian image, we could switch to a ministackorg/ministack:full that will get the image... so we keep latest and full with Debian and we could add some other servcies there like Bedrock + etc etc... the change for Debian implies a 366Mb total size, increase dependencies surface (we could do a multistage to remove a lot of unnecesary dependencies) but it gives us room to add several other services. We are currently sitting at 170Mb aprox.
All reactions