mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-09 22:14:59 +00:00
Move pict-rs binary out of excluded docker dir
This commit is contained in:
parent
39bd0fa04d
commit
cd66a1478a
2 changed files with 6 additions and 5 deletions
|
@ -123,6 +123,7 @@ steps:
|
|||
commands:
|
||||
- cargo build --target=$TARGET --release
|
||||
- $TOOL-strip target/$TARGET/release/pict-rs
|
||||
- cp target/$TARGET/release/pict-rs .
|
||||
|
||||
- name: push
|
||||
image: plugins/docker
|
||||
|
@ -201,6 +202,7 @@ steps:
|
|||
commands:
|
||||
- cargo build --target=$TARGET --release
|
||||
- $TOOL-strip target/$TARGET/release/pict-rs
|
||||
- cp target/$TARGET/release/pict-rs .
|
||||
|
||||
- name: push
|
||||
image: plugins/docker
|
||||
|
@ -279,6 +281,7 @@ steps:
|
|||
commands:
|
||||
- cargo build --target=$TARGET --release
|
||||
- $TOOL-strip target/$TARGET/release/pict-rs
|
||||
- cp target/$TARGET/release/pict-rs .
|
||||
|
||||
- name: push
|
||||
image: plugins/docker
|
||||
|
|
|
@ -4,12 +4,10 @@ FROM asonix/rust-runner:$REPO_ARCH-latest
|
|||
|
||||
USER root
|
||||
RUN \
|
||||
apk add exiftool imagemagick ffmpeg && \
|
||||
chown -R app:app /mnt
|
||||
apk add exiftool imagemagick ffmpeg && \
|
||||
chown -R app:app /mnt
|
||||
|
||||
ARG TARGET_ARCH
|
||||
|
||||
COPY target/$TARGET_ARCH/release/pict-rs /usr/local/bin/pict-rs
|
||||
COPY pict-rs /usr/local/bin/pict-rs
|
||||
COPY docker/prod/root/ /
|
||||
|
||||
USER app
|
||||
|
|
Loading…
Reference in a new issue