mirror of https://github.com/on4kjm/FLEcli.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
321 B
16 lines
321 B
FROM alpine:3.12 AS builder
|
|
|
|
# Copy the executable
|
|
COPY FLEcli /FLEcli_bin/FLEcli
|
|
RUN chmod +x /FLEcli_bin/FLEcli
|
|
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /FLEcli_bin/FLEcli /FLEcli_bin/FLEcli
|
|
|
|
# Create the data directory and set it as the defautl directory
|
|
WORKDIR /FLEcli_data
|
|
|
|
ENTRYPOINT ["/FLEcli_bin/FLEcli"]
|
|
CMD ["help"] |