You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
379 B
13 lines
379 B
FROM ghcr.io/cirruslabs/flutter:3.13.9
|
|
ENV TZ=Europe/Paris
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
RUN apt-get update && apt-get -y install php-common php-cli php
|
|
RUN mkdir /tmp/smartfit_web
|
|
WORKDIR /tmp/smartfit_web
|
|
|
|
RUN ls
|
|
RUN pwd
|
|
COPY ./ ./
|
|
RUN flutter build web --web-renderer canvaskit
|
|
ENTRYPOINT php -S localhost:8080 -t ./build/web/
|