Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hmanzur/dockerfile
https://github.com/hmanzur/dockerfile
dockerfile
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hmanzur/dockerfile
- Owner: hmanzur
- License: mit
- Created: 2021-02-20T18:11:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-23T14:23:14.000Z (almost 4 years ago)
- Last Synced: 2024-10-28T06:30:20.061Z (2 months ago)
- Topics: dockerfile
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dockerfile
Clone the Dockerfile you want in your proyect or pipeline
# Dockerfiles
- Node
- [Express.js](https://github.com/hmanzur/Dockerfile/tree/node/express) `node/express`
- [Web App (Angular, Vue, React, etc)](https://github.com/hmanzur/Dockerfile/tree/node/webapp) `node/webapp`
- Python
- [Django](https://github.com/hmanzur/Dockerfile/tree/python/django) `python/django`## Uses
### On Github Actions
```yml
- name: Clone Dockerfile repo
uses: uses: actions/checkout@v2
with:
repository: 'hmanzur/Dockerfile'
ref: 'my/branch'- name: Let's build
run: docker build -t my-image .
```