Fixed path
This commit is contained in:
parent
3427fc2b26
commit
5d4029c8b6
2 changed files with 12 additions and 4 deletions
|
@ -9,4 +9,6 @@ RUN dnf install -y dpkg
|
||||||
RUN dnf install -y rust cargo
|
RUN dnf install -y rust cargo
|
||||||
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||||
|
|
||||||
|
ENV PATH="$HOME/.cargo/bin:$PATH"
|
||||||
|
|
||||||
CMD [ "/bin/bash" ]
|
CMD [ "/bin/bash" ]
|
14
Makefile
14
Makefile
|
@ -1,9 +1,15 @@
|
||||||
all: latest version
|
build: build-latest build-version
|
||||||
|
|
||||||
latest:
|
build-latest:
|
||||||
podman build -t liliesh/franky:latest .
|
podman build -t liliesh/franky:latest .
|
||||||
|
|
||||||
|
|
||||||
|
build-version:
|
||||||
|
podman build -t liliesh/franky:9.3 .
|
||||||
|
|
||||||
|
publish: publish-latest publish-version
|
||||||
|
publish-latest:
|
||||||
podman push localhost/liliesh/franky:latest registry.satecloud.com/liliesh/franky:latest
|
podman push localhost/liliesh/franky:latest registry.satecloud.com/liliesh/franky:latest
|
||||||
|
|
||||||
version:
|
publish-version:
|
||||||
podman build -t liliesh/franky:9.3 .
|
|
||||||
podman push localhost/liliesh/franky:9.3 registry.satecloud.com/liliesh/franky:9.3
|
podman push localhost/liliesh/franky:9.3 registry.satecloud.com/liliesh/franky:9.3
|
Loading…
Add table
Add a link
Reference in a new issue