Cosmos-Server/dockerfile.arm64

17 lines
235 B
Plaintext
Raw Normal View History

2023-03-10 20:59:56 +00:00
# syntax=docker/dockerfile:1
FROM amd64/debian
2023-03-25 20:15:00 +00:00
EXPOSE 443 80
2023-03-10 20:59:56 +00:00
VOLUME /config
2023-03-25 20:15:00 +00:00
RUN apt-get update && apt-get install -y ca-certificates openssl
WORKDIR /app
COPY build/cosmos .
COPY static ./static
2023-03-10 20:59:56 +00:00
CMD ["./cosmos"]