We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jeanlopezxyz/Sessionize'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile.native-micro•864 B
####
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode.
# It uses a micro base image, tuned for Quarkus native executables.
# It reduces the size of the resulting container image.
#
# Before building the container image run:
#
# ./mvnw package -Dnative
#
# Then, build the image with:
#
# docker build -f src/main/docker/Dockerfile.native-micro -t quarkus/mcp-sessionize .
#
# Then run the container using:
#
# docker run -i --rm -p 8080:8080 quarkus/mcp-sessionize
#
###
FROM quay.io/quarkus/ubi9-quarkus-micro-image:2.0
WORKDIR /work/
RUN chown 1001 /work \
&& chmod "g+rwX" /work \
&& chown 1001:root /work
COPY --chown=1001:root --chmod=0755 target/*-runner /work/application
EXPOSE 8080
USER 1001
ENV SESSIONIZE_EVENT_ID=""
ENTRYPOINT ["./application", "-Dquarkus.http.host=0.0.0.0"]