This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ruby:2.6-stretch | |
| LABEL maintener='mtsuzuki@usp.br' | |
| ENV BUNDLE_BUILD__SASSC=--disable-march-tune-native | |
| # Permite que o apt opere com fontes baseadas em https | |
| RUN apt-get update -yqq && apt-get install -yqq --no-install-recommends apt-transport-https | |
| # Assegure-se de instalar uma versao corrente para o Node | |
| RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ruby:2.6-stretch | |
| LABEL maintener='mtsuzuki@usp.br' | |
| ARG DB_ADAPTER=nulldb | |
| # Permite que o apt opere com fontes baseadas em https | |
| RUN apt-get update -yqq && apt-get install -yqq --no-install-recommends apt-transport-https | |
| # Assegure-se de instalar uma versao corrente para o Node | |
| RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| web: | |
| image: mgtsuzuki/myapp_web:prod | |
| ports: | |
| - "80:3000" | |
| env_file: | |
| - .env/production/database |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| web: | |
| image: mgtsuzuki/myapp_web:prod | |
| ports: | |
| - "80:3000" | |
| env_file: | |
| - .env/production/database |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // default code here | |
| console.log('Hello Vscode Gist') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| web: | |
| image: mgtsuzuki/myapp_web:prod | |
| ports: | |
| - "80:3000" | |
| env_file: | |
| - .env/production/database |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ruby:2.6-stretch | |
| LABEL maintener='mtsuzuki@usp.br' | |
| # Permite que o apt opere com fontes baseadas em https | |
| RUN apt-get update -yqq && apt-get install -yqq --no-install-recommends apt-transport-https | |
| # Assegure-se de instalar uma versao corrente para o Node | |
| RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - | |
| # Assegure-se de instalar uma versao corrente para o Yarn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| TIMEOUT=15 | |
| QUIET=0 | |
| echoerr() { | |
| if [ "$QUIET" -ne 1 ]; then printf "%s\n" "$*" 1>&2; fi | |
| } | |
| usage() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| web: | |
| image: mgtsuzuki/myapp_web:prod | |
| ports: | |
| - "80:3000" | |
| env_file: | |
| - .env/production/database |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ruby:2.6-stretch | |
| LABEL maintener='mtsuzuki@usp.br' | |
| # Permite que o apt opere com fontes baseadas em https | |
| RUN apt-get update -yqq && apt-get install -yqq --no-install-recommends apt-transport-https | |
| # Assegure-se de instalar uma versao corrente para o Node | |
| RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - | |
| # Assegure-se de instalar uma versao corrente para o Yarn |