Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Dec 18, 2024
1 parent ad6aa84 commit 458b586
Show file tree
Hide file tree
Showing 17 changed files with 1,013 additions and 1,146 deletions.
32 changes: 32 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Install Operating system and dependencies
FROM ubuntu:24.04 AS builder

RUN apt-get update
RUN apt-get install -y curl git wget unzip gdb libstdc++6 libglu1-mesa fonts-droid-fallback python3 yq
RUN apt-get clean

RUN mkdir /flutter_app/
COPY . /flutter_app
WORKDIR /flutter_app/app

# download Flutter SDK from Flutter Github repo
RUN git clone https://github.com/flutter/flutter.git -b $(yq '.environment.flutter' /flutter_app/app/pubspec.yaml -r) /usr/local/flutter

# Set flutter environment path
ENV PATH="/usr/local/flutter/bin:/usr/local/flutter/bin/cache/dart-sdk/bin:${PATH}"

# Run flutter doctor
RUN flutter doctor

RUN flutter config --enable-web

# Copy files to container and build
RUN flutter build web

# Nginx Container
FROM nginx:alpine

EXPOSE 80

# Copy build/web in container to /app/
COPY --from=builder /flutter_app/app/build/web /usr/share/nginx/html
Loading

0 comments on commit 458b586

Please sign in to comment.