fooder-app/Dockerfile

46 lines
1.1 KiB
Docker
Raw Normal View History

2023-07-30 00:10:33 +02:00
FROM debian:stable-slim AS build-env
2024-03-25 19:46:03 +01:00
# install all needed stuff
RUN apt-get update
RUN apt-get install -y curl git unzip
2023-07-30 00:10:33 +02:00
2024-03-25 19:46:03 +01:00
# define variables
ARG FLUTTER_SDK=/usr/local/flutter
ARG FLUTTER_VERSION=3.10.5
ARG APP=/app/
2023-07-30 00:10:33 +02:00
2024-03-25 19:46:03 +01:00
#clone flutter
RUN git clone https://github.com/flutter/flutter.git $FLUTTER_SDK
# change dir to current flutter folder and make a checkout to the specific version
2023-07-30 00:10:33 +02:00
2024-03-25 19:46:03 +01:00
# setup the flutter path as an enviromental variable
ENV PATH="$FLUTTER_SDK/bin:$FLUTTER_SDK/bin/cache/dart-sdk/bin:${PATH}"
2023-07-30 00:10:33 +02:00
2024-03-25 19:46:03 +01:00
# Start to run Flutter commands
# doctor to see if all was installes ok
RUN flutter doctor -v
2023-07-30 00:10:33 +02:00
2024-03-25 19:46:03 +01:00
# create folder to copy source code
RUN mkdir $APP
# copy source code to folder
COPY . $APP
# stup new folder as the working directory
WORKDIR $APP
# Run build: 1 - clean, 2 - pub get, 3 - build web
RUN flutter clean
RUN flutter pub get
RUN flutter build web
2023-07-30 00:10:33 +02:00
2024-03-25 19:46:03 +01:00
# once heare the app will be compiled and ready to deploy
# use nginx to deploy
FROM nginx:1.25.2-alpine
# copy the info of the builded web app to nginx
COPY --from=build-env /app/build/web /usr/share/nginx/html
# Expose and run nginx
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]