Merge pull request #1 from wbrijesh/flyio-new-files New files from Fly.io Launch
Brijesh Wawdhane ops@brijesh.dev
Fri, 14 Mar 2025 18:41:15 +0530
3 files changed,
78 insertions(+),
0 deletions(-)
A
server/.dockerignore
@@ -0,0 +1,6 @@
+/.git +/node_modules +.dockerignore +.env +Dockerfile +fly.toml
A
server/Dockerfile
@@ -0,0 +1,49 @@
+# syntax = docker/dockerfile:1 + +# Adjust NODE_VERSION as desired +ARG NODE_VERSION=20.18.0 +FROM node:${NODE_VERSION}-slim AS base + +LABEL fly_launch_runtime="Node.js" + +# Node.js app lives here +WORKDIR /app + +# Set production environment +ENV NODE_ENV="production" + +# Install pnpm +ARG PNPM_VERSION=latest +RUN npm install -g pnpm@$PNPM_VERSION + + +# Throw-away build stage to reduce size of final image +FROM base AS build + +# Install packages needed to build node modules +RUN apt-get update -qq && \ + apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3 + +# Install node modules +COPY package.json pnpm-lock.yaml ./ +RUN pnpm install --frozen-lockfile --prod=false + +# Copy application code +COPY . . + +# Build application +RUN pnpm run build + +# Remove development dependencies +RUN pnpm prune --prod + + +# Final stage for app image +FROM base + +# Copy built application +COPY --from=build /app /app + +# Start the server by default, this can be overwritten at runtime +EXPOSE 3000 +CMD [ "pnpm", "run", "start" ]
A
server/fly.toml
@@ -0,0 +1,23 @@
+# fly.toml app configuration file generated for sse-from-child-process on 2025-03-14T13:07:22Z +# +# See https://fly.io/docs/reference/configuration/ for information about how to use this file. +# + +app = 'sse-from-child-process' +primary_region = 'bom' + +[build] + +[http_service] + internal_port = 3000 + force_https = true + auto_stop_machines = 'stop' + auto_start_machines = true + min_machines_running = 0 + processes = ['app'] + +[[vm]] + memory = '1gb' + cpu_kind = 'shared' + cpus = 1 + memory_mb = 1024