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
| sudo yum install tmux |
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
| # --- snip | |
| group :development do | |
| # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. | |
| gem 'web-console', '>= 3.3.0' | |
| gem 'listen', '>= 3.0.5', '< 3.2' | |
| # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | |
| gem 'spring' | |
| gem 'spring-watcher-listen', '~> 2.0.0' | |
| gem 'guard' | |
| gem 'guard-rspec' |
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
| bundle install | |
| guard init |
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
| " vim-plug | |
| call plug#begin('~/.vim/plugged') | |
| " plugin section | |
| " end vim-plug | |
| call plug#end() |
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
| " vim-plug | |
| call plug#begin('~/.vim/plugged') | |
| " plugin section | |
| Plug 'pangloss/vim-javascript' | |
| Plug 'leafgarland/typescript-vim' | |
| Plug 'maxmellon/vim-jsx-pretty' | |
| " end vim-plug |
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
| # The following digest is alpine:3.10.6 | |
| # This image has known security issues. | |
| # Therefore, it can be used to test the scan in the GitHub Actions pipeline. | |
| FROM alpine@sha256:abd435b2a549002f78ec235cca4677237e6b8cfa9f7d15a2ea1e644596ff71d2 | |
| ARG GOSS_VERSION | |
| ARG TF_VERSION | |
| ARG TFLINT_VERSION | |
| ARG TFSEC_VERSION |
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: | |
| hadolint: | |
| image: docker.io/hadolint/hadolint:v2.4.1-alpine | |
| working_dir: /opt/app | |
| volumes: | |
| - .:/opt/app | |
| localbuild: | |
| image: localbuild/${IMAGE_NAME}:latest |
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
| ignored: | |
| - DL3059 # Multiple consecutive RUN statements | |
| trustedRegistries: | |
| - docker.io | |
| - ghcr.io |
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
| RUNNER = docker-compose run --rm | |
| RUNNER-HADOLINT = $(RUNNER) hadolint | |
| PWD = $(shell pwd) | |
| # check_defined determines if an environment variable is defined | |
| check_defined = \ | |
| $(strip $(foreach 1,$1, \ | |
| $(call __check_defined,$1,$(strip $(value 2))))) | |
| __check_defined = \ | |
| $(if $(value $1),, \ |
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
| # gossfile loads all goss tests from goss.d | |
| gossfile: | |
| ./goss.d/*.yaml: {} |