Files
clamav-mirror/Dockerfile
Vassiliy Yegorov 2c64934b6c
Some checks failed
Build Backend / Build image (push) Failing after 21s
init
2026-03-12 16:26:43 +07:00

20 lines
342 B
Docker

FROM alpine
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" ]