init
Some checks failed
Build Backend / Build image (push) Failing after 8s

This commit is contained in:
2026-03-12 16:24:25 +07:00
commit c88afc7871
13 changed files with 236 additions and 0 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
ARG DOCKER_BASEIMAGE
FROM ${DOCKER_BASEIMAGE}
ENV PYTHONUNBUFFERED 1
WORKDIR /opt/app-root/src
# Install Bash and Caddy
RUN apk add --no-cache bash caddy \
&& rm -rf /var/cache/apk/*
# Install CVD-Update
RUN pip install --no-cache-dir cvdupdate
# Copy Scripts
COPY src/ $WORKDIR
RUN chmod +x ./entrypoint.sh
# Start Server
EXPOSE 8080
CMD [ "./entrypoint.sh", "serve" ]