mstts / Dockerfile
getapi's picture
Create Dockerfile
c8bfe14 verified
raw
history blame
119 Bytes
FROM denoland/deno:alpine-1.24.0
WORKDIR /app
COPY . .
EXPOSE 8000
CMD ["run", "--allow-net", "--allow-env", "main.ts"]