Version v0.3.0-alpha.14

This commit is contained in:
Aode (lion) 2021-08-28 23:15:29 -05:00
parent 84637ee78f
commit 7c371c182a
4 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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),
]);