most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat| packages: | |
| yum: | |
| libjpeg-turbo-devel: [] | |
| libpng-devel: [] | |
| libcurl-devel: [] | |
| commands: | |
| 01_install_rhel_pg: | |
| command: "(yum repolist |grep -q pgdg96) || sudo yum install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-6-x86_64/pgdg-ami201503-96-9.6-2.noarch.rpm -y" | |
| 02_install_pg_devel: |
| echo "Creating an SSH key for you..." | |
| ssh-keygen -t rsa | |
| echo "Please add this public key to Github \n" | |
| echo "https://github.com/account/ssh \n" | |
| read -p "Press [Enter] key after this..." | |
| echo "Installing xcode-stuff" | |
| xcode-select --install |
| # Stage 1: install dependencies | |
| FROM node:21 AS deps | |
| WORKDIR /app | |
| COPY package*.json . | |
| ARG NODE_ENV | |
| ENV NODE_ENV $NODE_ENV | |
| RUN npm install | |
| # Stage 2: build | |
| FROM node:17-alpine AS builder |