From 51051cb22d0caa006a4a130c1436eef4411cf934 Mon Sep 17 00:00:00 2001 From: Tilman Date: Sun, 5 Oct 2025 22:23:32 +0200 Subject: [PATCH] Cleanup apt-get command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a7e1517..2a0f7ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM denoland/deno:ubuntu-2.5.2 EXPOSE 8000 +RUN apt-get update && apt-get install -y make zip WORKDIR /app @@ -20,4 +21,3 @@ USER deno RUN deno cache --reload main.ts CMD ["run", "--allow-all", "main.ts"] -RUN apt-get update && apt-get install -y make zip