Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hmanzur/dockerfile


https://github.com/hmanzur/dockerfile

dockerfile

Last synced: 13 days ago
JSON representation

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 .
```