Files
Kyle Speight 5a71b67076 update
2025-09-09 01:46:09 -07:00

14 lines
440 B
Docker

FROM --platform=$TARGETOS/$TARGETARCH golang:1.23-alpine
LABEL author="Kyle Speight" maintainer="kyle@kyle-hosting.xyz"
RUN apk add --update --no-cache ca-certificates tzdata \
&& adduser -D -h /home/container container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./../entrypoint.sh /entrypoint.sh
CMD [ "/bin/ash", "/entrypoint.sh" ]