All Projects → edwardinubuntu → flutter-web-dockerfile

edwardinubuntu / flutter-web-dockerfile

Licence: MIT license
A demo how to setup flutter web in docker container

Programming Languages

dart
5743 projects
HTML
75241 projects
Dockerfile
14818 projects
kotlin
9241 projects
swift
15916 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to flutter-web-dockerfile

FD-Daily-Task
Create responsive dashboard Daily Task design using Flutter
Stars: ✭ 181 (+277.08%)
Mutual labels:  flutterweb
DeveloperFolio
Flutter web - DeveloperFolio template
Stars: ✭ 143 (+197.92%)
Mutual labels:  flutterweb
vocabhub
An app to help you build your vocabulary.This app contains 800+ curated GRE words
Stars: ✭ 21 (-56.25%)
Mutual labels:  flutterweb
champ96k.github.io
portfolio website using Flutter
Stars: ✭ 71 (+47.92%)
Mutual labels:  flutterweb
1stHacktoberfest
Web / Android app base on Flutter(2.5.2).
Stars: ✭ 35 (-27.08%)
Mutual labels:  flutterweb
Awesome-Flutter-Templates
A Huge Collection of Flutter App templates
Stars: ✭ 53 (+10.42%)
Mutual labels:  flutterweb
Moss
A GitHub client app developed with Flutter, which supports Android iOS Web. More feature: BaiduMap+Amap UI+DiDi+Weibo!
Stars: ✭ 76 (+58.33%)
Mutual labels:  flutterweb
experiments with web
Hands on Flutter Web
Stars: ✭ 116 (+141.67%)
Mutual labels:  flutterweb

flutter-web-dockerfile

A demo how to setup flutter web in docker container. The demo code is from flutter official cookbook Animate the properties of a container. And the docker build web was learned and reference from building a flutter web container.

Command

Build the docker image

Use docker build the container image

docker build -t myanimate-web .

If you have some problem during cache, you can clean cache by this

docker build --no-cache -t myanimate-web .

After Success building image

Run the docker image with localhost 1200 port. You can change to any other port just replace it.

docker run -d -p 1200:80 --name myanimate myanimate-web

Here we go, open browser and go to http://localhost:1200/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].