Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanabx committed Feb 25, 2024
1 parent 6a7e9ef commit 89b6982
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions containers/Containerfile.compiler
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ARG DEST_DIR=/build
FROM registry.fedoraproject.org/fedora:40 as cosmic-compiler

RUN dnf update -y
Expand Down Expand Up @@ -25,9 +26,9 @@ RUN dnf install -y git \
RUN mkdir -p /build

RUN git clone --recurse-submodules https://github.com/pop-os/launcher
RUN cd launcher && just build-release && just rootdir=/build install && just clean && cd ..
RUN cd launcher && just build-release && just rootdir=${DEST_DIR} install && just clean && cd ..

RUN git clone --recurse-submodules https://github.com/pop-os/cosmic-epoch
RUN cd cosmic-epoch && git submodule update --remote && just install rootdir=/build prefix=/usr && just clean && cd ..
RUN cd cosmic-epoch && git submodule update --remote && just rootdir=${DEST_DIR} install && just clean && cd ..

# Artifacts in /build

0 comments on commit 89b6982

Please sign in to comment.