mstts / Dockerfile
getapi's picture
Update Dockerfile
11c5ea8 verified
raw
history blame contribute delete
No virus
118 Bytes
FROM denoland/deno:alpine-1.24.0
WORKDIR /app
COPY . .
EXPOSE 7860
CMD ["run", "--allow-net", "--allow-env", "app.ts"]