- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
14 lines
258 B
TypeScript
14 lines
258 B
TypeScript
/**
|
|
Check if the process is running inside a container.
|
|
|
|
@example
|
|
```
|
|
import isInsideContainer from 'is-inside-container';
|
|
|
|
if (isInsideContainer()) {
|
|
console.log('Running inside a container');
|
|
}
|
|
```
|
|
*/
|
|
export default function isInsideContainer(): boolean;
|