DevOps Engineer in Training

Based in Tallinn, Estonia

Status: Updating the in github right now CI/CD & Docker

``` ## Step 3: The Dockerfile (The "Universal Language") Now we package that app so it runs the same on your laptop as it will on DigitalOcean. **Task:** Create a file named `Dockerfile` (no extension) in the same folder. Copy this in: ```dockerfile # Use a lightweight web server as the base FROM nginx:alpine # Copy our HTML file into the folder Nginx uses to serve content COPY index.html /usr/share/nginx/html/index.html # Expose port 80 so we can see the site EXPOSE 80