[release] v0.9.19-unstable

This commit is contained in:
Yann Stepienik 2023-08-11 11:00:07 +01:00
parent 425747234b
commit 43a526fb61
2 changed files with 9 additions and 5 deletions

View file

@ -18,7 +18,10 @@ EXPOSE 443 80
VOLUME /config
RUN apt-get update && apt-get install -y ca-certificates openssl
RUN apt-get update \
&& apt-get install -y ca-certificates openssl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app

View file

@ -1,14 +1,15 @@
# syntax=docker/dockerfile:1
FROM --platform=linux/arm64 arm64v8/debian:12
FROM debian:12
EXPOSE 443 80
VOLUME /config
RUN apt-get clean
RUN apt-get update
RUN apt-get install -y ca-certificates openssl
RUN apt-get update \
&& apt-get install -y ca-certificates openssl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app