16 lines
577 B
Docker
16 lines
577 B
Docker
FROM "ubuntu:24.04"
|
|
ADD ["scripts/install_pop-fe.sh", "scripts/install_rust.sh", "scripts/make_gcc.sh", "scripts/prerequisites.sh", "/usr/scripts"]
|
|
RUN apt update && cd /usr/scripts && ./prerequisites.sh && ./install_rust.sh && cd /usr && ./scripts/make_gcc.sh
|
|
|
|
|
|
|
|
#RUN apt update && apt install -y nginx
|
|
|
|
#RUN mkdir /app
|
|
#WORKDIR /app
|
|
|
|
#VOLUME my_vol (Do not use)
|
|
|
|
#ADD install_pop-fe.sh install_pop-fe.sh
|
|
#CMD ["cp", "install_pop-fe.sh", "/my_vol"]
|
|
# TODO: Make a script that builds the image and then registers alias like `jaby-make` for the docker command |