This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/docker/ui-builder/Dockerfile

14 lines
233 B
Text
Raw Permalink Normal View History

2024-08-23 11:29:53 -05:00
# BACKEND #
FROM ubuntu/apache2
RUN apt update -y
RUN apt install -y git
WORKDIR /var/www/html
RUN git clone https://github.com/sbrin/flipper-ui-editor.git
RUN cp -r flipper-ui-editor/* .
RUN rm -fr flipper-ui-editor
# RUNTIME #