Cosmos-Server/dockerfile
2023-03-18 20:01:42 +00:00

15 lines
161 B
Plaintext

# syntax=docker/dockerfile:1
FROM debian
WORKDIR /app
COPY build/cosmos .
COPY static ./static
VOLUME /config
EXPOSE 443 80
CMD ["./cosmos"]