exec /tini: exec format errorexec /tini: exec format errorFROM denoland/deno
EXPOSE 8000
WORKDIR /app
ADD . /app
RUN deno install --entrypoint main.ts
CMD ["run", "--allow-net", "main.ts"]FROM denoland/deno
EXPOSE 8000
WORKDIR /app
ADD . /app
RUN deno install --entrypoint main.ts
CMD ["run", "--allow-net", "main.ts"]version: "3"
services:
web:
build: .
container_name: deno-container
image: deno-image
ports:
- "8000:8000"version: "3"
services:
web:
build: .
container_name: deno-container
image: deno-image
ports:
- "8000:8000"

Join the Discord to continue the conversation