Merge pull request #21 from fedyna-k/PMPR-19-5

Patch to add HTTP (auto redirected by Deno)
This commit is contained in:
Kevin FEDYNA
2025-01-21 13:34:05 +01:00
committed by GitHub
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -7,6 +7,7 @@ RUN deno cache main.ts
RUN deno task build
USER deno
EXPOSE 80
EXPOSE 443
CMD ["run", "-A", "main.ts"]
+1
View File
@@ -3,6 +3,7 @@ services:
container_name: deno_fresh_app
build: .
ports:
- "80:80"
- "443:443"
volumes:
- .:/app