-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
73c09cc
commit a2f5125
Showing
8 changed files
with
156 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.git/ | ||
.dart_tool/ | ||
android/ | ||
build/ | ||
docs/ | ||
ios/ | ||
linux/ | ||
localization/ | ||
macos/ | ||
node_modules/ | ||
shaders/ | ||
snap/ | ||
windows/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Build | ||
FROM debian:latest as build | ||
|
||
ENV PATH="/usr/local/flutter/bin:/usr/local/flutter/bin/cache/dart-sdk/bin:$PATH" | ||
RUN apt-get update | ||
RUN apt-get install -y curl git wget unzip | ||
RUN apt-get clean | ||
|
||
RUN git clone https://github.com/flutter/flutter.git /usr/local/flutter | ||
RUN flutter channel stable | ||
RUN flutter upgrade | ||
|
||
RUN mkdir /lunasea/ | ||
COPY . /lunasea/ | ||
WORKDIR /lunasea/ | ||
RUN flutter build web | ||
|
||
# Runtime | ||
FROM nginx:alpine | ||
LABEL org.opencontainers.image.source="https://github.com/JagandeepBrar/LunaSea" | ||
COPY --from=build /lunasea/build/web /usr/share/nginx/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters