From 2031677c409e134c199a6c14065e664d97b6ab54 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sun, 18 Aug 2024 02:10:15 +0200 Subject: [PATCH] build: Environment variables (#579) --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2664770e..e79fd022 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,9 +46,9 @@ COPY --chmod=744 ./web/nginx.conf /etc/nginx/sites-enabled/web.conf VOLUME /storage EXPOSE 22 5900 8006 -ENV CPU_CORES "1" -ENV RAM_SIZE "1G" -ENV DISK_SIZE "16G" -ENV BOOT "http://example.com/image.iso" +ENV CPU_CORES="1" +ENV RAM_SIZE="1G" +ENV DISK_SIZE="16G" +ENV BOOT="http://example.com/image.iso" ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]