Cosmos-Server/dockerfile.arm64

19 lines
367 B
Plaintext
Raw Normal View History

2023-03-10 20:59:56 +00:00
# syntax=docker/dockerfile:1
2023-06-13 10:15:01 +00:00
FROM --platform=linux/arm64 arm64v8/debian:11
2023-03-10 20:59:56 +00:00
2023-03-25 20:15:00 +00:00
EXPOSE 443 80
2023-03-10 20:59:56 +00:00
VOLUME /config
2023-05-28 10:44:28 +00:00
RUN apt-get clean
RUN apt-get update
RUN apt-get install -y ca-certificates openssl
2023-05-27 17:11:33 +00:00
2023-05-28 10:44:28 +00:00
WORKDIR /app
2023-05-27 17:24:58 +00:00
2023-07-25 11:06:44 +00:00
COPY build/cosmos build/cosmos_gray.png build/Logo.png build/GeoLite2-Country.mmdb build/meta.json ./
2023-05-28 10:44:28 +00:00
COPY static ./static
2023-03-10 20:59:56 +00:00
CMD ["./cosmos"]