mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 07:30:25 +00:00
13 lines
388 B
Docker
13 lines
388 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM ubuntu:22.04 AS production
|
|
|
|
RUN apt-get update && apt-get install -yq wget
|
|
RUN ls -la
|
|
RUN wget https://raw.githubusercontent.com/PhyreApps/PhyrePanel/main/installers/install.sh -O phyre-install.sh
|
|
RUN chmod +x phyre-install.sh
|
|
RUN ./phyre-install.sh
|
|
|
|
COPY entrypoint.sh /usr/local/phyre/entrypoint.sh
|
|
|
|
ENTRYPOINT ["sh","/usr/local/phyre/entrypoint.sh"]
|