duoload 0.1.2

Export vocabulary from Duocards
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM debian:stable-slim

ARG VERSION
LABEL org.opencontainers.image.version=$VERSION
LABEL org.opencontainers.image.source="https://github.com/$GITHUB_REPOSITORY"

RUN apt-get update \
    && apt install libssl3 \
    && rm -rf /var/lib/cache/apt/* /var/lib/cache/dpkg/*

# Copy the appropriate binary based on the target platform
COPY artifacts/duoload-linux-amd64/duoload /usr/local/bin/duoload
RUN chmod +x /usr/local/bin/duoload

ENTRYPOINT ["/usr/local/bin/duoload"]