Skip to content

Instantly share code, notes, and snippets.

@thecreazy
Created March 2, 2026 10:07
Show Gist options
  • Select an option

  • Save thecreazy/421b811841f4fc25324ec93fee8863ca to your computer and use it in GitHub Desktop.

Select an option

Save thecreazy/421b811841f4fc25324ec93fee8863ca to your computer and use it in GitHub Desktop.
FROM node:20
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
ENV AUTH0_CLIENT_SECRET="super-secret-client-secret"
ENV POSTGRES_PASSWORD="postgres"
ENV JWT_SIGNING_KEY="dev-signing-key"
ENV SENTRY_DSN="https://examplePublicKey@o0.ingest.sentry.io/0"
EXPOSE 3000
CMD ["npm", "run", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment