mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Version v0.3.0-alpha.14
This commit is contained in:
parent
84637ee78f
commit
7c371c182a
4 changed files with 4 additions and 4 deletions
|
@ -63,7 +63,7 @@ RUN \
|
|||
$TOOL-strip target/$TARGET/$BUILD_MODE/$BINARY
|
||||
|
||||
# production environment
|
||||
FROM amd64/alpine:3.14
|
||||
FROM arm32v7/alpine:3.14
|
||||
|
||||
ARG UID=991
|
||||
ARG GID=991
|
||||
|
|
|
@ -63,7 +63,7 @@ RUN \
|
|||
$TOOL-strip target/$TARGET/$BUILD_MODE/$BINARY
|
||||
|
||||
# production environment
|
||||
FROM amd64/alpine:3.14
|
||||
FROM arm64v8/alpine:3.14
|
||||
|
||||
ARG UID=991
|
||||
ARG GID=991
|
||||
|
|
|
@ -2,7 +2,7 @@ version: '3.3'
|
|||
|
||||
services:
|
||||
pictrs:
|
||||
image: asonix/pictrs:v0.3.0-alpha.13-r1
|
||||
image: asonix/pictrs:v0.3.0-alpha.14
|
||||
ports:
|
||||
- "127.0.0.1:8080:8080"
|
||||
restart: always
|
||||
|
|
|
@ -128,7 +128,7 @@ impl Processor for Resize {
|
|||
fn command(&self, mut args: Vec<String>) -> Vec<String> {
|
||||
args.extend([
|
||||
"-filter".to_string(),
|
||||
"-Lanczos2".to_string(),
|
||||
"Lanczos2".to_string(),
|
||||
"-resize".to_string(),
|
||||
format!("{}x{}>", self.0, self.0),
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue