Fix Dockerfile

This commit is contained in:
2026-01-06 16:54:29 -05:00
parent d79cd11b41
commit 8c4a64cc8a
+2 -3
View File
@@ -3,11 +3,10 @@ FROM denoland/deno:alpine
WORKDIR /app
COPY . .
RUN deno cache main.ts --allow-import flag
RUN deno cache main.ts --allow-import main.ts
RUN deno task build
USER deno
EXPOSE 80
EXPOSE 443
CMD ["run", "-A", "main.ts"]
CMD ["run", "-A", "main.ts"]