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