Files
Cosmos-Server/dockerfile.arm64
2024-02-28 21:02:24 +00:00

21 lines
323 B
Plaintext

# syntax=docker/dockerfile:1
FROM debian:12
EXPOSE 443 80
VOLUME /config
RUN apt-get update \
&& apt-get install -y ca-certificates openssl fdisk mergerfs snapraid \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY build/* ./
COPY static ./static
CMD ["./cosmos"]