Cosmos-Server/dockerfile
Jogai 7cd0a7a67e
[skip ci] Reduce layers in docker (#58)
* Reduce layers in docker

* Reduce docker layers

* Sign contributor agreement
2023-07-24 19:39:33 +01:00

17 lines
318 B
Plaintext

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