feat: Initial commit

This commit is contained in:
mrhid6
2025-09-12 11:35:25 +00:00
parent 225a305fc8
commit 5d273dacd0
12 changed files with 680 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
# syntax=docker/dockerfile:1
FROM golang:1.25
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -qq update -y &&\
apt-get -qq install apt-utils wget curl -y &&\
mkdir /opt/app &&\
useradd -m -s /bin/bash appuser
COPY entry.sh /
COPY bin/* /opt/app/
RUN chmod 777 /entry.sh && chown -R appuser:appuser /opt/app && chmod -R 777 /opt/app
ENTRYPOINT [ "/entry.sh" ]