Introduce Dockerfile

This commit is contained in:
2024-02-18 16:17:54 +01:00
parent 2b29a8e4b2
commit 4d07719066
6 changed files with 54 additions and 14 deletions
+14 -2
View File
@@ -1,3 +1,15 @@
# Démineur
# Minesweeper
:)
## Docker
- Build the image
```bash
docker build -t minesweeper .
```
- Run the container
```bash
docker run --name minesweeper -dp 3000:3000 minesweeper
```