mirror of
https://github.com/cloudmaker97/JTL-Shop-Entwicklungsumgebung.git
synced 2025-12-06 08:58:33 +00:00
9 lines
No EOL
282 B
Docker
9 lines
No EOL
282 B
Docker
ARG BASE_IMAGE
|
|
FROM $BASE_IMAGE
|
|
USER root
|
|
# Install just from GitHub releases
|
|
RUN curl -L "https://github.com/casey/just/releases/download/1.36.0/just-1.36.0-x86_64-unknown-linux-musl.tar.gz" \
|
|
| tar -xz -C /usr/local/bin
|
|
|
|
# Make just executable
|
|
RUN chmod +x /usr/local/bin/just |