27122025
This commit is contained in:
29
.dockerignore
Normal file
29
.dockerignore
Normal file
@@ -0,0 +1,29 @@
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# Docker files (not needed in image)
|
||||
docker-compose.yml
|
||||
Dockerfile
|
||||
|
||||
# Node / frontend
|
||||
node_modules
|
||||
npm-debug.log
|
||||
yarn.lock
|
||||
dist
|
||||
build
|
||||
|
||||
# PHP / backend
|
||||
vendor
|
||||
|
||||
# Env / logs
|
||||
.env
|
||||
*.log
|
||||
|
||||
# IDE
|
||||
.vscode
|
||||
.idea
|
||||
|
||||
# Tests
|
||||
tests
|
||||
coverage
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM php:8.2-apache
|
||||
FROM php:8.2-apache-bullseye
|
||||
|
||||
# Enable Apache rewrite module (optional but recommended)
|
||||
RUN a2enmod rewrite
|
||||
|
||||
Reference in New Issue
Block a user