mirror of
https://github.com/azukaar/Cosmos-Server.git
synced 2026-05-01 00:29:24 -05:00
20 lines
307 B
Docker
20 lines
307 B
Docker
# 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 cosmos_gray.png .
|
|
COPY build/meta.json .
|
|
COPY static ./static
|
|
|
|
CMD ["./cosmos"]
|