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/builder/Dockerfile

21 lines
427 B
Text
Raw Normal View History

2024-08-09 22:44:21 -05:00
# BACKEND #
## Parent Container
FROM debian
## Creating Directories
RUN mkdir /src /app /tmp/src
WORKDIR /tmp/src
## Installing Requisites
RUN apt update -y
2024-08-11 21:23:09 -05:00
RUN apt install -y curl wget python3 python3-pip
2024-08-09 22:44:21 -05:00
2024-08-11 21:23:09 -05:00
## Downloading uFBT
RUN pip install ufbt --break-system-packages
2024-08-09 22:44:21 -05:00
2024-08-09 22:47:37 -05:00
## Copying compile script
2024-09-04 21:57:03 -05:00
COPY docker/builder/flipper-dev.sh /bin/flipper-dev.sh
2024-08-09 22:47:37 -05:00
RUN chmod +x /bin/flipper-dev.sh
2024-08-09 22:44:21 -05:00
# RUNTIME #
CMD "/bin/flipper-dev.sh"