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
- Host: GitHub
- URL: https://github.com/thiagohrcosta/treasure-island-python
- Owner: thiagohrcosta
- Created: 2023-04-29T14:48:54.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-29T15:01:25.000Z (about 3 years ago)
- Last Synced: 2025-05-31T00:51:21.354Z (about 1 year ago)
- Topics: docker, python-3
- Language: Python
- Homepage: https://replit.com/@thiagohrcosta/treasure-island-start#main.py
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Treasure Island (Python)

## Tecnologias utilizadas
 
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`.