feat: create docker images for new api (#51538)

This commit is contained in:
Oliver Eyton-Williams
2023-09-12 22:45:25 +02:00
committed by GitHub
parent 90bdffca7b
commit 05d19b8b42
8 changed files with 187 additions and 45 deletions
+1 -1
View File
@@ -1 +1 @@
dist/**/*.js
dist/
+4 -2
View File
@@ -11,26 +11,29 @@
"@fastify/session": "^10.1.1",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.5.0",
"@fastify/type-provider-typebox": "3.5.0",
"@immobiliarelabs/fastify-sentry": "^6.0.0",
"@prisma/client": "5.2.0",
"ajv": "8.12.0",
"ajv-formats": "^2.1.1",
"connect-mongo": "4.6.0",
"dotenv": "16.3.1",
"fast-uri": "2.2.0",
"fastify": "4.21.0",
"fastify-auth0-verify": "^1.0.0",
"fastify-plugin": "^4.3.0",
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"mongodb": "^4.16.0",
"nanoid": "3",
"no-profanity": "^1.4.2",
"nodemailer": "^6.9.3",
"nodemon": "2.0.22",
"pino-pretty": "10.2.0",
"query-string": "^7.1.3"
},
"description": "The freeCodeCamp.org open-source codebase and curriculum",
"devDependencies": {
"@fastify/type-provider-typebox": "3.5.0",
"@total-typescript/ts-reset": "^0.4.0",
"@types/express-session": "1.17.7",
"@types/jsonwebtoken": "^9.0.2",
@@ -38,7 +41,6 @@
"@types/supertest": "2.0.12",
"dotenv-cli": "7.3.0",
"jest": "29.6.4",
"pino-pretty": "10.2.0",
"prisma": "5.2.0",
"supertest": "6.3.3",
"ts-jest": "29.1.1"
+1
View File
@@ -1,5 +1,6 @@
generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "linux-musl-openssl-3.0.x"]
}
datasource db {
+1 -1
View File
@@ -2,7 +2,7 @@
"extends": "./tsconfig",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"rootDir": "../",
"noEmit": false
},
"include": ["src"],