pict-rs/docker/prod/Dockerfile.amd64

95 lines
1.8 KiB
Docker
Raw Normal View History

2020-06-15 02:41:45 +00:00
FROM rustembedded/cross:x86_64-unknown-linux-gnu AS x86_64-builder
2020-06-08 01:28:16 +00:00
ARG UID=991
ARG GID=991
2020-06-08 17:43:28 +00:00
ENV TOOLCHAIN=stable
2020-06-15 02:41:45 +00:00
ENV TARGET=x86_64-unknown-linux-gnu
ENV TOOL=x86_64-linux-gnu
2020-06-08 01:28:16 +00:00
RUN \
apt-get update && \
apt-get upgrade -y
RUN \
addgroup --gid "${GID}" build && \
adduser \
--disabled-password \
--gecos "" \
--ingroup build \
--uid "${UID}" \
--home /opt/build \
build
ADD https://sh.rustup.rs /opt/build/rustup.sh
RUN \
chown -R build:build /opt/build
USER build
WORKDIR /opt/build
2020-06-15 02:41:45 +00:00
ENV PATH=$PATH:/opt/build/.cargo/bin
2020-06-08 01:28:16 +00:00
RUN \
chmod +x rustup.sh && \
./rustup.sh --default-toolchain $TOOLCHAIN --profile minimal -y && \
rustup target add $TARGET
2020-06-08 17:43:28 +00:00
FROM x86_64-builder as builder
2020-06-15 02:41:45 +00:00
USER root
RUN \
dpkg --add-architecture amd64 && \
apt-get update && \
apt-get -y install libgexiv2-dev:amd64
USER build
2020-06-08 17:43:28 +00:00
ARG TAG=master
ARG REPOSITORY=https://git.asonix.dog/asonix/pict-rs
ARG BINARY=pict-rs
2020-06-15 02:41:45 +00:00
ENV PKG_CONFIG_ALLOW_CROSS=1
ENV PKG_CONFIG_PATH=/usr/lib/$TOOL/pkgconfig:/usr/lib/$PKGCONFIG
2020-06-08 01:28:16 +00:00
RUN \
git clone -b $TAG $REPOSITORY repo
WORKDIR /opt/build/repo
RUN \
cargo build --release --target $TARGET && \
$TOOL-strip target/$TARGET/release/$BINARY
2020-06-15 02:41:45 +00:00
FROM amd64/ubuntu:20.04
2020-06-08 01:28:16 +00:00
ARG UID=991
ARG GID=991
ARG BINARY=pict-rs
2020-06-15 02:41:45 +00:00
COPY --from=builder /opt/build/repo/target/x86_64-unknown-linux-gnu/release/$BINARY /usr/bin/$BINARY
2020-06-08 01:28:16 +00:00
RUN \
2020-06-15 02:41:45 +00:00
apt-get update && \
apt-get -y upgrade && \
apt-get -y install tini libgexiv2-2 && \
addgroup --gid $GID pictrs && \
adduser \
--disabled-password \
--gecos "" \
--ingroup pictrs \
--uid $UID \
--home /opt/pictrs \
pictrs
2020-06-08 01:28:16 +00:00
RUN \
chown -R pictrs:pictrs /mnt
2020-06-08 14:12:12 +00:00
VOLUME /mnt
2020-06-08 01:28:16 +00:00
WORKDIR /opt/pictrs
USER pictrs
2020-06-15 02:41:45 +00:00
ENTRYPOINT ["/usr/bin/tini", "--"]
2020-06-08 01:28:16 +00:00
CMD ["/usr/bin/pict-rs", "-p", "/mnt", "-a", "0.0.0.0:8080", "-w", "thumbnail"]