13 lines
233 B
Docker
13 lines
233 B
Docker
# 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 #
|