getting-started-app/README.md

16 lines
291 B
Markdown
Raw Normal View History

2023-07-17 13:17:25 -04:00
# Getting started
2023-09-17 11:58:10 -04:00
To create a docker image, run the following command in the root directory of the project:
```bash
docker build -t IMAGE-NAME .
```
2023-07-17 13:17:25 -04:00
2023-09-17 11:58:10 -04:00
To run the docker image, run the following command:
```bash
docker run -p 5000:5000 IMAGE-NAME
```
# Running