build(docker): create and populate .dockerignore

This commit is contained in:
Ryan Mwangi 2024-11-21 14:56:39 +03:00
parent db60f11f6e
commit e9a8ddffde
2 changed files with 6 additions and 22 deletions

6
.dockerignore Normal file
View File

@ -0,0 +1,6 @@
node_modules
npm-debug.log
.DS_Store
*.log
.git
.env

View File

@ -1,22 +0,0 @@
import express from 'express';
import dotenv from 'dotenv';
import path from 'path'; // Import the path module
import routes from './src/routes.js'; // Import routes from routes.js
import { validateEnvVariables } from './src/envValidator.js';
dotenv.config();
validateEnvVariables();
const app = express();
const PORT = process.env.PORT || 3002;
app.use(express.json());
app.use(express.static(path.join(process.cwd(), 'public')));
app.use('/', routes);
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});