Created
March 2, 2026 10:07
-
-
Save thecreazy/421b811841f4fc25324ec93fee8863ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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