Cosmos-Server/dockerfile
2023-04-28 19:53:12 +01:00

19 lines
283 B
Plaintext

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