Cosmos-Server/dockerfile
2023-03-12 18:17:28 +00:00

15 lines
154 B
Plaintext

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