Initial commit

This commit is contained in:
2026-02-23 12:38:01 +00:00
commit 5ff290fdd6
11 changed files with 615 additions and 0 deletions

27
Dockerfile.aarch64 Normal file
View File

@@ -0,0 +1,27 @@
# Example Dockerfile for arm64
ARG BASE_IMAGE=alpine:latest
FROM ${BASE_IMAGE}
ARG MAINTAINER
ARG TZ
ARG APP_NAME
ARG APP_USER
LABEL maintainer="${MAINTAINER}"
LABEL org.opencontainers.image.title="${APP_NAME}"
ENV TZ=${TZ}
ENV USER=${APP_USER}
RUN apk add --no-cache tzdata ca-certificates
WORKDIR /app
COPY ./config /app/config
COPY ./data /app/data
RUN adduser -D ${APP_USER} && chown -R ${APP_USER}:${APP_USER} /app
USER ${APP_USER}
CMD ["sh"]