susface-api / Dockerfile
T1ckbase
first commit
54ba1c5
raw
history blame
174 Bytes
FROM denoland/deno:latest
EXPOSE 7860
WORKDIR /app
# Prefer not to run as root.
USER deno
COPY . /app
RUN deno install --entrypoint main.ts
CMD ["run", "-A", "main.ts"]