Skip to content

Commit 0ba576a

Browse files
committed
Release v0.3
1 parent 9fbbf75 commit 0ba576a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Diff for: Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,3 @@ ENV PRISMA_SCHEMA_PATH=/apps/database/prisma/schema.prisma
6060

6161
# Start the NestJS server
6262
CMD ["sh", "-c", "cd /apps/database && npx prisma migrate deploy --schema $PRISMA_SCHEMA_PATH && cd ../server && node dist/main.js"]
63-
#CMD ["sh", "-c", "tail -f /dev/null"]

Diff for: apps/server/src/util/middleware/frontend.middleware.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import mime from 'mime-types';
44
import { dirname } from 'node:path';
55
import path from 'path';
66

7-
const rootDir = path.resolve(dirname(process.argv[1]), '..', 'public');
7+
const rootDir = path.resolve(dirname(process.argv[1]), 'public');
88
const resolvePath = (file: string) => path.resolve(rootDir, file);
99
const staticFiles = (() => {
1010
try {

0 commit comments

Comments
 (0)