Skip to content

Instantly share code, notes, and snippets.

View MarioCarlosChita's full-sized avatar

Mário Carlos Chita MarioCarlosChita

View GitHub Profile
@MarioCarlosChita
MarioCarlosChita / Dockerfile
Created March 31, 2024 22:43 — forked from anoochit/Dockerfile
Dockerfile for prisma dart and dart frog
FROM dart:latest as builder
# Install Node.js LTS to builder
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - &&\
apt-get install -y nodejs
# Sets the working directory to /app
WORKDIR /app
# Copies the current directory contents into the container at /app
import 'dart:isolate';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {