https://www.youtube.com/watch?v=RqcOCBb4arc
-
[2:14] Over & Backs (shoulder flexion and extension)
- Pode ser feito com um cabo qualquer também;
-
Dividir esse exercício, fazer separadamente a flexão e a extensão;
https://www.youtube.com/watch?v=RqcOCBb4arc
[2:14] Over & Backs (shoulder flexion and extension)
Dividir esse exercício, fazer separadamente a flexão e a extensão;
FROM node:12-alpine AS installer | |
WORKDIR /home/node/app | |
COPY package.json yarn.* /home/node/app/ | |
RUN npm pack [email protected] && \ | |
tar zxvf pm2-4.4.0.tgz && \ | |
rm pm2-4.4.0.tgz && \ | |
(cd package && yarn install) | |
COPY . /home/node/app/ |
#!/bin/bash | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
ORANGE='\033[0;33m' | |
RED='\033[0;31m' | |
DEFAULT='\033[0m' | |
BUCKET=challenge-correction-cache | |
HOME_DIR=/home/deploy |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |