Skip to content

Instantly share code, notes, and snippets.

View thenriquedb's full-sized avatar
🐳

Thiago Henrique Domingues thenriquedb

🐳
View GitHub Profile
@thenriquedb
thenriquedb / App.tsx
Created April 15, 2025 14:28
React Native Animated Galery
import React, { useEffect, useRef } from 'react';
import {
StatusBar,
FlatList,
Image,
View,
Dimensions,
StyleSheet,
TouchableOpacity,
} from 'react-native';
@thenriquedb
thenriquedb / Dockerfile
Last active July 14, 2025 21:30
Dockerfile para aplicações Nodes
FROM node:current-alpine AS build
# Diretório onde a aplicação será copiada
WORKDIR /usr/src/app
# Copia o package.json e package-lock.json para o diretório de trabalho
COPY package*.json ./
# Instale a cli do nest globalmente
RUN npm install -g @nestjs/cli