An open API service indexing awesome lists of open source software.

https://github.com/thiagohrcosta/treasure-island-python

Simple project to apply the day 03 of the 100 Days of Code: Python Bootcamp from Angela Yu
https://github.com/thiagohrcosta/treasure-island-python

docker python-3

Last synced: about 1 month ago
JSON representation

Simple project to apply the day 03 of the 100 Days of Code: Python Bootcamp from Angela Yu

Awesome Lists containing this project

README

          

# Treasure Island (Python)
![enter image description here](https://res.cloudinary.com/dloadb2bx/image/upload/v1682780221/treasure1_zyfr7u.png)

## Tecnologias utilizadas
![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white) ![Python](https://img.shields.io/badge/python-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)

This project was created using Docker to studying the basic concepts of Python learned at day 01 and day 02 in the **[100 Days of Code: The Complete Python Pro Bootcamp](https://www.udemy.com/course/100-days-of-code/)**.

## Summary
**Day 03:** Learning how to deal with if/else statements

## How to run this project
This project was created with Docker, the Dockerfile is:

FROM python:3

WORKDIR /app

COPY . .

CMD ["python", "app/main.py"]

To run just download this project and run the follow commands: `docker build -t treasure-island .` then run `docker run -it treasure-island`.