Front dockerfile (#88)

* readding react-native-paper because expo build need it

* added Dockerfile with nginx.conf for hosting

* added front to docker-compose prod
This commit is contained in:
Clément Le Bihan
2022-10-25 18:43:36 +01:00
committed by GitHub
parent 284da8b8c7
commit bce5088d3c
6 changed files with 91 additions and 3 deletions
+6
View File
@@ -16,3 +16,9 @@ services:
- POSTGRES_DB=${POSTGRES_DB}
ports:
- "5432:5432"
front:
build: ./front
ports:
- "8080:80"
depends_on:
- "back"