# syntax=docker/dockerfile:1 FROM debian:12 EXPOSE 443 80 VOLUME /config RUN apt-get update \ && apt-get install -y ca-certificates openssl \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY build/cosmos build/cosmos_gray.png build/Logo.png build/GeoLite2-Country.mmdb build/meta.json ./ COPY static ./static CMD ["./cosmos"]