mirror of
https://github.com/arthur-pbty/chrono.git
synced 2026-06-06 14:10:43 +02:00
chore: update dependencies and add postcss configuration
- Updated Next.js to version 16.2.4 - Updated Tailwind CSS and PostCSS to their latest versions - Added autoprefixer to PostCSS configuration - Created a .dockerignore file to exclude unnecessary files from Docker context
This commit is contained in:
+21
-8
@@ -1,11 +1,24 @@
|
||||
services:
|
||||
web:
|
||||
build: .
|
||||
app:
|
||||
container_name: chrono-app
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
restart: unless-stopped
|
||||
|
||||
env_file:
|
||||
- .env
|
||||
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
- ./:/app
|
||||
- /app/node_modules
|
||||
- "${WEB_PORT:-3000}:3000"
|
||||
|
||||
environment:
|
||||
- NODE_ENV=development
|
||||
command: npm run dev
|
||||
- PORT=3000
|
||||
- HOSTNAME=0.0.0.0
|
||||
|
||||
networks:
|
||||
- app
|
||||
|
||||
networks:
|
||||
app:
|
||||
driver: bridge
|
||||
Reference in New Issue
Block a user