Map caching, clickhouse test service

This commit is contained in:
cracklesparkle
2024-08-26 16:11:37 +09:00
parent 579bbf7764
commit ab88fd5ea5
20 changed files with 737 additions and 220 deletions

19
monitor/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
# Start with an official lightweight image
FROM oven/bun:slim
# Set the working directory in the container
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . .
# Install project dependencies
RUN bun install
ENV MONITOR_PORT=$MONITOR_PORT
# Expose the port the app runs on
EXPOSE $MONITOR_PORT
# Command to run the application
CMD ["bun", "index.ts"]