remove aarch64
Some checks failed
/ release-and-build (push) Failing after 1m5s

This commit is contained in:
2026-03-16 17:06:52 +01:00
parent 672955e5d7
commit 5f7be6746a

View File

@@ -1,27 +0,0 @@
# 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"]