examples: added sentry-metrics example

This commit is contained in:
Aleix Conchillo Flaqué
2025-02-06 10:43:10 -08:00
parent c5d5ca8232
commit c4be07693f
9 changed files with 524 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
FROM python:3.10-bullseye
RUN mkdir /app
RUN mkdir /app/assets
RUN mkdir /app/utils
COPY *.py /app/
COPY requirements.txt /app/
WORKDIR /app
RUN pip3 install -r requirements.txt
EXPOSE 7860
CMD ["python3", "server.py"]