mirror of
https://github.com/Floriansylvain/Exo-technique-VIE-Barcelone-SaaS-HRTech.git
synced 2026-08-19 11:43:23 +02:00
feat: Dockerfile and docker-compose
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
FROM php:8.5-alpine
|
||||
WORKDIR /var/www/html
|
||||
|
||||
RUN apk add --no-cache bash
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
CMD ["php", "-S", "0.0.0.0:80", "-t", "/var/www/html"]
|
||||
@@ -0,0 +1,7 @@
|
||||
services:
|
||||
app:
|
||||
build: .
|
||||
ports:
|
||||
- "8080:80"
|
||||
volumes:
|
||||
- .:/var/www/html
|
||||
Reference in New Issue
Block a user